pub trait IFlattenedVec3Curve: IObject {
// Provided methods
fn tip(self) -> List_1<Vector3> { ... }
fn set_tip(self, value: List_1<Vector3>) { ... }
fn roo(self) -> List_1<Vector3> { ... }
fn set_roo(self, value: List_1<Vector3>) { ... }
fn dir(self) -> List_1<Vector3> { ... }
fn set_dir(self, value: List_1<Vector3>) { ... }
}Provided Methods§
fn tip(self) -> List_1<Vector3>
fn set_tip(self, value: List_1<Vector3>)
fn roo(self) -> List_1<Vector3>
fn set_roo(self, value: List_1<Vector3>)
fn dir(self) -> List_1<Vector3>
fn set_dir(self, value: List_1<Vector3>)
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.