pub struct NullNode(pub OwnedObject);Expand description
Null / locator node attribute (NodeAttribute + class Null).
Tuple Fields§
§0: OwnedObjectImplementations§
Source§impl NullNode
impl NullNode
pub fn inner(&self) -> &OwnedObject
pub fn into_inner(self) -> OwnedObject
Sourcepub fn properties(&self) -> &HashMap<String, Property>
pub fn properties(&self) -> &HashMap<String, Property>
Temporary bridge to Assimp-style node-attribute properties until typed accessors are added.
pub fn property(&self, name: &str) -> Option<&Property>
Trait Implementations§
Source§impl TryFrom<OwnedObject> for NullNode
impl TryFrom<OwnedObject> for NullNode
Source§type Error = FbxTypeMismatch
type Error = FbxTypeMismatch
The type returned in the event of a conversion error.
impl StructuralPartialEq for NullNode
Auto Trait Implementations§
impl Freeze for NullNode
impl RefUnwindSafe for NullNode
impl Send for NullNode
impl Sync for NullNode
impl Unpin for NullNode
impl UnsafeUnpin for NullNode
impl UnwindSafe for NullNode
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