Skip to main content

IEachInspector

Trait IEachInspector 

Source
pub trait IEachInspector: IMapInspector {
    // Provided methods
    fn m_from_person(self) -> i32 { ... }
    fn set_m_from_person(self, value: i32) { ... }
    fn m_from_force(self) -> i32 { ... }
    fn set_m_from_force(self, value: i32) { ... }
    fn m_to_person(self) -> i32 { ... }
    fn set_m_to_person(self, value: i32) { ... }
    fn m_to_force(self) -> i32 { ... }
    fn set_m_to_force(self, value: i32) { ... }
    fn m_both(self) -> bool { ... }
    fn set_m_both(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_from_person(self) -> i32

Source

fn set_m_from_person(self, value: i32)

Source

fn m_from_force(self) -> i32

Source

fn set_m_from_force(self, value: i32)

Source

fn m_to_person(self) -> i32

Source

fn set_m_to_person(self, value: i32)

Source

fn m_to_force(self) -> i32

Source

fn set_m_to_force(self, value: i32)

Source

fn m_both(self) -> bool

Source

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