pub struct AMove {
pub kind: MoveType,
pub move_props: MoveProperties,
pub object_props: ObjectProperties,
pub activity_props: ActivityProperties,
}Expand description
Indicates that the actor has moved object from origin to target.
If the origin or target are not specified, either can be determined by context.
Fields§
§kind: MoveType§move_props: MovePropertiesAdds all valid move properties to this struct
object_props: ObjectPropertiesAdds all valid object properties to this struct
activity_props: ActivityPropertiesAdds all valid activity properties to this struct
Trait Implementations§
Source§impl ActivityExt for AMove
impl ActivityExt for AMove
fn props(&self) -> &ActivityProperties
fn props_mut(&mut self) -> &mut ActivityProperties
Source§impl<'de> Deserialize<'de> for AMove
impl<'de> Deserialize<'de> for AMove
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl ObjectExt for AMove
impl ObjectExt for AMove
fn props(&self) -> &ObjectProperties
fn props_mut(&mut self) -> &mut ObjectProperties
impl Activity for AMove
impl Object for AMove
Auto Trait Implementations§
impl Freeze for AMove
impl RefUnwindSafe for AMove
impl Send for AMove
impl Sync for AMove
impl Unpin for AMove
impl UnwindSafe for AMove
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