pub struct FbxRenderLayer<T> {
pub name: Option<String>,
pub values: Vec<T>,
}Available on crate features
fbx-reader or fbx-writer only.Expand description
One layer element resolved onto the polygon-corner domain.
Fields§
§name: Option<String>Layer name from the source file, when it had one.
values: Vec<T>One value per entry in FbxRenderMesh::positions.
Trait Implementations§
Source§impl<T: Clone> Clone for FbxRenderLayer<T>
impl<T: Clone> Clone for FbxRenderLayer<T>
Source§fn clone(&self) -> FbxRenderLayer<T>
fn clone(&self) -> FbxRenderLayer<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug> Debug for FbxRenderLayer<T>
impl<T: Debug> Debug for FbxRenderLayer<T>
Source§impl<T: Default> Default for FbxRenderLayer<T>
impl<T: Default> Default for FbxRenderLayer<T>
Source§fn default() -> FbxRenderLayer<T>
fn default() -> FbxRenderLayer<T>
Returns the “default value” for a type. Read more
Source§impl<T: PartialEq> PartialEq for FbxRenderLayer<T>
impl<T: PartialEq> PartialEq for FbxRenderLayer<T>
impl<T: PartialEq> StructuralPartialEq for FbxRenderLayer<T>
Auto Trait Implementations§
impl<T> Freeze for FbxRenderLayer<T>
impl<T> RefUnwindSafe for FbxRenderLayer<T>where
T: RefUnwindSafe,
impl<T> Send for FbxRenderLayer<T>where
T: Send,
impl<T> Sync for FbxRenderLayer<T>where
T: Sync,
impl<T> Unpin for FbxRenderLayer<T>where
T: Unpin,
impl<T> UnsafeUnpin for FbxRenderLayer<T>
impl<T> UnwindSafe for FbxRenderLayer<T>where
T: UnwindSafe,
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