Skip to main content

IEnumItem_2Methods

Trait IEnumItem_2Methods 

Source
pub trait IEnumItem_2Methods<T0: ClassIdentity, T1: ClassIdentity>: ClassIdentity {
    // Provided methods
    fn ctor(self, instance: T0)
       where Self: Sized { ... }
    fn get_value(self) -> T1
       where Self: Sized { ... }
    fn set_value(self, value: T1)
       where Self: Sized { ... }
    fn get_column_name0(self) -> Il2CppString
       where Self: Sized { ... }
    fn get_column_name1(self) -> Il2CppString
       where Self: Sized { ... }
    fn on_left_right(self, step: i32, is_trigger: bool)
       where Self: Sized { ... }
}

Provided Methods§

Source

fn ctor(self, instance: T0)
where Self: Sized,

Source

fn get_value(self) -> T1
where Self: Sized,

Source

fn set_value(self, value: T1)
where Self: Sized,

Source

fn get_column_name0(self) -> Il2CppString
where Self: Sized,

Source

fn get_column_name1(self) -> Il2CppString
where Self: Sized,

Source

fn on_left_right(self, step: i32, is_trigger: bool)
where Self: Sized,

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§

Source§

impl<T0: ClassIdentity, T1: ClassIdentity, __U: IEnumItem_2<T0, T1> + ClassIdentity> IEnumItem_2Methods<T0, T1> for __U