Skip to main content

ISlice_1

Trait ISlice_1 

Source
pub trait ISlice_1<T0: ClassIdentity>: IObject {
    // Provided methods
    fn m_source_list(self) -> IList_1_Interface<T0> { ... }
    fn set_m_source_list(self, value: IList_1_Interface<T0>) { ... }
    fn m_from(self) -> i32 { ... }
    fn set_m_from(self, value: i32) { ... }
    fn m_length(self) -> i32 { ... }
    fn set_m_length(self, value: i32) { ... }
    fn m_reversed(self) -> bool { ... }
    fn set_m_reversed(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_source_list(self) -> IList_1_Interface<T0>

Source

fn set_m_source_list(self, value: IList_1_Interface<T0>)

Source

fn m_from(self) -> i32

Source

fn set_m_from(self, value: i32)

Source

fn m_length(self) -> i32

Source

fn set_m_length(self, value: i32)

Source

fn m_reversed(self) -> bool

Source

fn set_m_reversed(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§

Source§

impl<T0: ClassIdentity> ISlice_1<T0> for Slice_1<T0>