pub trait IYogaNode: IObject {
// Provided methods
fn yg_node(self) -> IntPtr { ... }
fn set_yg_node(self, value: IntPtr) { ... }
fn measure_function(self) -> MeasureFunction { ... }
fn set_measure_function(self, value: MeasureFunction) { ... }
fn baseline_function(self) -> BaselineFunction { ... }
fn set_baseline_function(self, value: BaselineFunction) { ... }
}Provided Methods§
fn yg_node(self) -> IntPtr
fn set_yg_node(self, value: IntPtr)
fn measure_function(self) -> MeasureFunction
fn set_measure_function(self, value: MeasureFunction)
fn baseline_function(self) -> BaselineFunction
fn set_baseline_function(self, value: BaselineFunction)
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.