pub struct LineGeometry {
pub object: OwnedObject,
pub points: Vec<[f32; 3]>,
pub point_indices: Vec<i32>,
}Fields§
§object: OwnedObject§points: Vec<[f32; 3]>§point_indices: Vec<i32>Implementations§
Source§impl LineGeometry
impl LineGeometry
pub fn inner(&self) -> &OwnedObject
pub fn into_inner(self) -> OwnedObject
Trait Implementations§
Source§impl Debug for LineGeometry
impl Debug for LineGeometry
Source§impl PartialEq for LineGeometry
impl PartialEq for LineGeometry
Source§impl TryFrom<OwnedObject> for LineGeometry
impl TryFrom<OwnedObject> for LineGeometry
Source§type Error = FbxTypeMismatch
type Error = FbxTypeMismatch
The type returned in the event of a conversion error.
impl StructuralPartialEq for LineGeometry
Auto Trait Implementations§
impl Freeze for LineGeometry
impl RefUnwindSafe for LineGeometry
impl Send for LineGeometry
impl Sync for LineGeometry
impl Unpin for LineGeometry
impl UnsafeUnpin for LineGeometry
impl UnwindSafe for LineGeometry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more