#[non_exhaustive]pub enum FbxNodeAttribute {
Camera(FbxCamera),
Light(FbxLight),
}Available on crate features
fbx-reader or fbx-writer only.Expand description
What a NodeAttribute attached to a scene node describes.
Only the two classes this crate represents appear here. Others are reported
through FbxWarningCode::DroppedNodeAttribute rather than given a variant
that would carry nothing.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for FbxNodeAttribute
impl Clone for FbxNodeAttribute
Source§fn clone(&self) -> FbxNodeAttribute
fn clone(&self) -> FbxNodeAttribute
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 Debug for FbxNodeAttribute
impl Debug for FbxNodeAttribute
Source§impl PartialEq for FbxNodeAttribute
impl PartialEq for FbxNodeAttribute
impl StructuralPartialEq for FbxNodeAttribute
Auto Trait Implementations§
impl Freeze for FbxNodeAttribute
impl RefUnwindSafe for FbxNodeAttribute
impl Send for FbxNodeAttribute
impl Sync for FbxNodeAttribute
impl Unpin for FbxNodeAttribute
impl UnsafeUnpin for FbxNodeAttribute
impl UnwindSafe for FbxNodeAttribute
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