Skip to main content

IForce

Trait IForce 

Source
pub trait IForce: IObject {
    // Provided methods
    fn m_head(self) -> Unit { ... }
    fn set_m_head(self, value: Unit) { ... }
    fn m_tail(self) -> Unit { ... }
    fn set_m_tail(self, value: Unit) { ... }
    fn m_type(self) -> Force_Type { ... }
    fn set_m_type(self, value: Force_Type) { ... }
}

Provided Methods§

Source

fn m_head(self) -> Unit

Source

fn set_m_head(self, value: Unit)

Source

fn m_tail(self) -> Unit

Source

fn set_m_tail(self, value: Unit)

Source

fn m_type(self) -> Force_Type

Source

fn set_m_type(self, value: Force_Type)

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§