pub enum MayaSpecializedCommand {
Requires(MayaRequiresCommand),
CurrentUnit(MayaCurrentUnitCommand),
FileInfo(MayaFileInfoCommand),
CreateNode(MayaCreateNodeCommand),
Rename(MayaRenameCommand),
Select(MayaSelectCommand),
SetAttr(MayaSetAttrCommand),
AddAttr(Box<MayaAddAttrCommand>),
ConnectAttr(MayaConnectAttrCommand),
Relationship(MayaRelationshipCommand),
File(MayaFileCommand),
}Expand description
Maya-specific structured command variants derived from a top-level command.
Variants§
Requires(MayaRequiresCommand)
CurrentUnit(MayaCurrentUnitCommand)
FileInfo(MayaFileInfoCommand)
CreateNode(MayaCreateNodeCommand)
Rename(MayaRenameCommand)
Select(MayaSelectCommand)
SetAttr(MayaSetAttrCommand)
AddAttr(Box<MayaAddAttrCommand>)
ConnectAttr(MayaConnectAttrCommand)
Relationship(MayaRelationshipCommand)
File(MayaFileCommand)
Trait Implementations§
Source§impl Clone for MayaSpecializedCommand
impl Clone for MayaSpecializedCommand
Source§fn clone(&self) -> MayaSpecializedCommand
fn clone(&self) -> MayaSpecializedCommand
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 MayaSpecializedCommand
impl Debug for MayaSpecializedCommand
Source§impl PartialEq for MayaSpecializedCommand
impl PartialEq for MayaSpecializedCommand
impl Eq for MayaSpecializedCommand
impl StructuralPartialEq for MayaSpecializedCommand
Auto Trait Implementations§
impl Freeze for MayaSpecializedCommand
impl RefUnwindSafe for MayaSpecializedCommand
impl Send for MayaSpecializedCommand
impl Sync for MayaSpecializedCommand
impl Unpin for MayaSpecializedCommand
impl UnsafeUnpin for MayaSpecializedCommand
impl UnwindSafe for MayaSpecializedCommand
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