pub struct Arrive {
pub kind: ArriveType,
pub arrive_props: ArriveProperties,
pub object_props: ObjectProperties,
pub activity_props: ActivityProperties,
}
Expand description
An IntransitiveActivity that indicates that the actor has arrived at the location.
The origin can be used to identify the context from which the actor originated. The target typically has no defined meaning.
Fields§
§kind: ArriveType
§arrive_props: ArriveProperties
Adds all valid arrive properties to this struct
object_props: ObjectProperties
Adds all valid object properties to this struct
activity_props: ActivityProperties
Adds all valid activity properties to this struct
Trait Implementations§
Source§impl ActivityExt for Arrive
impl ActivityExt for Arrive
fn props(&self) -> &ActivityProperties
fn props_mut(&mut self) -> &mut ActivityProperties
Source§impl<'de> Deserialize<'de> for Arrive
impl<'de> Deserialize<'de> for Arrive
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 Arrive
impl ObjectExt for Arrive
fn props(&self) -> &ObjectProperties
fn props_mut(&mut self) -> &mut ObjectProperties
impl Activity for Arrive
impl IntransitiveActivity for Arrive
impl Object for Arrive
Auto Trait Implementations§
impl Freeze for Arrive
impl RefUnwindSafe for Arrive
impl Send for Arrive
impl Sync for Arrive
impl Unpin for Arrive
impl UnwindSafe for Arrive
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