pub enum MayaLightSpecializedCommand {
Requires(MayaLightRequiresCommand),
CurrentUnit(MayaLightCurrentUnitCommand),
FileInfo(MayaLightFileInfoCommand),
CreateNode(MayaLightCreateNodeCommand),
Rename(MayaLightRenameCommand),
Select(MayaLightSelectCommand),
SetAttr(MayaLightSetAttrCommand),
AddAttr(Box<MayaLightAddAttrCommand>),
ConnectAttr(MayaLightConnectAttrCommand),
Relationship(MayaLightRelationshipCommand),
File(MayaLightFileCommand),
}Variants§
Requires(MayaLightRequiresCommand)
CurrentUnit(MayaLightCurrentUnitCommand)
FileInfo(MayaLightFileInfoCommand)
CreateNode(MayaLightCreateNodeCommand)
Rename(MayaLightRenameCommand)
Select(MayaLightSelectCommand)
SetAttr(MayaLightSetAttrCommand)
AddAttr(Box<MayaLightAddAttrCommand>)
ConnectAttr(MayaLightConnectAttrCommand)
Relationship(MayaLightRelationshipCommand)
File(MayaLightFileCommand)
Trait Implementations§
Source§impl Clone for MayaLightSpecializedCommand
impl Clone for MayaLightSpecializedCommand
Source§fn clone(&self) -> MayaLightSpecializedCommand
fn clone(&self) -> MayaLightSpecializedCommand
Returns a duplicate of the value. Read more
1.0.0 · 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 MayaLightSpecializedCommand
impl Debug for MayaLightSpecializedCommand
impl Eq for MayaLightSpecializedCommand
impl StructuralPartialEq for MayaLightSpecializedCommand
Auto Trait Implementations§
impl Freeze for MayaLightSpecializedCommand
impl RefUnwindSafe for MayaLightSpecializedCommand
impl Send for MayaLightSpecializedCommand
impl Sync for MayaLightSpecializedCommand
impl Unpin for MayaLightSpecializedCommand
impl UnsafeUnpin for MayaLightSpecializedCommand
impl UnwindSafe for MayaLightSpecializedCommand
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