Skip to main content

IDynValue

Trait IDynValue 

Source
pub trait IDynValue: IObject {
    // Provided methods
    fn m_ref_id(self) -> i32 { ... }
    fn set_m_ref_id(self, value: i32) { ... }
    fn m_hash_code(self) -> i32 { ... }
    fn set_m_hash_code(self, value: i32) { ... }
    fn m_read_only(self) -> bool { ... }
    fn set_m_read_only(self, value: bool) { ... }
    fn m_number(self) -> f64 { ... }
    fn set_m_number(self, value: f64) { ... }
    fn m_object(self) -> IlInstance { ... }
    fn set_m_object(self, value: IlInstance) { ... }
    fn m_type(self) -> DataType { ... }
    fn set_m_type(self, value: DataType) { ... }
}

Provided Methods§

Source

fn m_ref_id(self) -> i32

Source

fn set_m_ref_id(self, value: i32)

Source

fn m_hash_code(self) -> i32

Source

fn set_m_hash_code(self, value: i32)

Source

fn m_read_only(self) -> bool

Source

fn set_m_read_only(self, value: bool)

Source

fn m_number(self) -> f64

Source

fn set_m_number(self, value: f64)

Source

fn m_object(self) -> IlInstance

Source

fn set_m_object(self, value: IlInstance)

Source

fn m_type(self) -> DataType

Source

fn set_m_type(self, value: DataType)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§