[][src]Struct activitystreams::activity::apub::Leave

pub struct Leave {
    pub leave_props: LeaveProperties,
    pub object_props: ObjectProperties,
    pub ap_object_props: ApObjectProperties,
    pub activity_props: ActivityProperties,
    // some fields omitted
}

Indicates that the actor has left the object.

The target and origin typically have no meaning.

Fields

leave_props: LeavePropertiesobject_props: ObjectPropertiesap_object_props: ApObjectPropertiesactivity_props: ActivityProperties

Trait Implementations

impl Activity for Leave[src]

impl AsMut<ActivityProperties> for Leave[src]

impl AsMut<ActorAndObjectProperties> for Leave[src]

impl AsMut<ApObjectProperties> for Leave[src]

impl AsMut<ObjectProperties> for Leave[src]

impl AsRef<ActivityProperties> for Leave[src]

impl AsRef<ActorAndObjectProperties> for Leave[src]

impl AsRef<ApObjectProperties> for Leave[src]

impl AsRef<ObjectProperties> for Leave[src]

impl Clone for Leave[src]

impl Debug for Leave[src]

impl Default for Leave[src]

impl<'de> Deserialize<'de> for Leave[src]

impl Object for Leave[src]

impl Serialize for Leave[src]

impl TryFrom<Leave> for ObjectBox[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Leave> for ActivityBox[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Leave

impl Send for Leave

impl Sync for Leave

impl Unpin for Leave

impl UnwindSafe for Leave

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.