Skip to main content

ILocalVariableInfo

Trait ILocalVariableInfo 

Source
pub trait ILocalVariableInfo: IObject {
    // Provided methods
    fn type(self) -> SystemType { ... }
    fn set_type(self, value: SystemType) { ... }
    fn is_pinned(self) -> bool { ... }
    fn set_is_pinned(self, value: bool) { ... }
    fn position(self) -> u16 { ... }
    fn set_position(self, value: u16) { ... }
}

Provided Methods§

Source

fn type(self) -> SystemType

Source

fn set_type(self, value: SystemType)

Source

fn is_pinned(self) -> bool

Source

fn set_is_pinned(self, value: bool)

Source

fn position(self) -> u16

Source

fn set_position(self, value: u16)

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§