pub enum ActiveObjectCommand {
Show 13 variants
SetProperties(AOCSetProperties),
UpdatePosition(AOCUpdatePosition),
SetTextureMod(AOCSetTextureMod),
SetSprite(AOCSetSprite),
SetPhysicsOverride(AOCSetPhysicsOverride),
SetAnimation(AOCSetAnimation),
SetAnimationSpeed(AOCSetAnimationSpeed),
SetBonePosition(AOCSetBonePosition),
AttachTo(AOCAttachTo),
Punched(AOCPunched),
UpdateArmorGroups(AOCUpdateArmorGroups),
SpawnInfant(AOCSpawnInfant),
Obsolete1(AOCObsolete1),
}
Variants§
SetProperties(AOCSetProperties)
UpdatePosition(AOCUpdatePosition)
SetTextureMod(AOCSetTextureMod)
SetSprite(AOCSetSprite)
SetPhysicsOverride(AOCSetPhysicsOverride)
SetAnimation(AOCSetAnimation)
SetAnimationSpeed(AOCSetAnimationSpeed)
SetBonePosition(AOCSetBonePosition)
AttachTo(AOCAttachTo)
Punched(AOCPunched)
UpdateArmorGroups(AOCUpdateArmorGroups)
SpawnInfant(AOCSpawnInfant)
Obsolete1(AOCObsolete1)
Trait Implementations§
Source§impl Clone for ActiveObjectCommand
impl Clone for ActiveObjectCommand
Source§fn clone(&self) -> ActiveObjectCommand
fn clone(&self) -> ActiveObjectCommand
Returns a copy 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 ActiveObjectCommand
impl Debug for ActiveObjectCommand
Source§impl Deserialize for ActiveObjectCommand
impl Deserialize for ActiveObjectCommand
Source§type Output = ActiveObjectCommand
type Output = ActiveObjectCommand
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl PartialEq for ActiveObjectCommand
impl PartialEq for ActiveObjectCommand
Source§impl Serialize for ActiveObjectCommand
impl Serialize for ActiveObjectCommand
type Input = ActiveObjectCommand
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for ActiveObjectCommand
Auto Trait Implementations§
impl Freeze for ActiveObjectCommand
impl RefUnwindSafe for ActiveObjectCommand
impl Send for ActiveObjectCommand
impl Sync for ActiveObjectCommand
impl Unpin for ActiveObjectCommand
impl UnwindSafe for ActiveObjectCommand
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