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

pub struct Update {
    pub update_props: UpdateProperties,
    pub object_props: ObjectProperties,
    pub ap_object_props: ApObjectProperties,
    pub activity_props: ActivityProperties,
    // some fields omitted
}

Indicates that the actor has updated the object.

Note, however, that this vocabulary does not define a mechanism for describing the actual set of modifications made to object.

The target and origin typically have no defined meaning.

Fields

update_props: UpdatePropertiesobject_props: ObjectPropertiesap_object_props: ApObjectPropertiesactivity_props: ActivityProperties

Trait Implementations

impl Activity for Update[src]

impl AsMut<ActivityProperties> for Update[src]

impl AsMut<ActorAndObjectProperties> for Update[src]

impl AsMut<ApObjectProperties> for Update[src]

impl AsMut<ObjectProperties> for Update[src]

impl AsRef<ActivityProperties> for Update[src]

impl AsRef<ActorAndObjectProperties> for Update[src]

impl AsRef<ApObjectProperties> for Update[src]

impl AsRef<ObjectProperties> for Update[src]

impl Clone for Update[src]

impl Debug for Update[src]

impl Default for Update[src]

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

impl Object for Update[src]

impl Serialize for Update[src]

impl TryFrom<Update> for ObjectBox[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Update> for ActivityBox[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Update

impl Send for Update

impl Sync for Update

impl Unpin for Update

impl UnwindSafe for Update

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.