pub struct UsdNode {
pub name: String,
pub kind: String,
pub properties: Vec<UsdProperty>,
pub children: Vec<UsdPart>,
}Fields§
§name: String§kind: String§properties: Vec<UsdProperty>§children: Vec<UsdPart>Trait Implementations§
Auto Trait Implementations§
impl Freeze for UsdNode
impl RefUnwindSafe for UsdNode
impl Send for UsdNode
impl Sync for UsdNode
impl Unpin for UsdNode
impl UnwindSafe for UsdNode
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