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§
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)
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.