Skip to main content

ICallbackArguments

Trait ICallbackArguments 

Source
pub trait ICallbackArguments: IObject {
    // Provided methods
    fn m_args(self) -> IList_1_Interface<DynValue> { ... }
    fn set_m_args(self, value: IList_1_Interface<DynValue>) { ... }
    fn m_count(self) -> i32 { ... }
    fn set_m_count(self, value: i32) { ... }
    fn m_last_is_tuple(self) -> bool { ... }
    fn set_m_last_is_tuple(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_args(self) -> IList_1_Interface<DynValue>

Source

fn set_m_args(self, value: IList_1_Interface<DynValue>)

Source

fn m_count(self) -> i32

Source

fn set_m_count(self, value: i32)

Source

fn m_last_is_tuple(self) -> bool

Source

fn set_m_last_is_tuple(self, value: bool)

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§