Struct activitystreams::activity::Follow[][src]

pub struct Follow {
    pub kind: FollowType,
    pub follow_props: ActorAndObject,
    pub object_props: ObjectProperties,
    pub activity_props: ActivityProperties,
}

Indicates that the actor is "following" the object.

Following is defined in the sense typically used within Social systems in which the actor is interested in any activity performed by or on the object. The target and origin typically have no defined meaning.

Fields

Adds all valid follow properties to this struct

Adds all valid object properties to this struct

Adds all valid activity properties to this struct

Trait Implementations

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

Deserialize this value from the given Serde deserializer. Read more

impl Object for Follow
[src]

impl ActivityExt for Follow
[src]

impl Clone for Follow
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Follow
[src]

Returns the "default value" for a type. Read more

impl ObjectExt for Follow
[src]

impl Debug for Follow
[src]

Formats the value using the given formatter. Read more

impl Serialize for Follow
[src]

Serialize this value into the given Serde serializer. Read more

impl Activity for Follow
[src]

Auto Trait Implementations

impl Send for Follow

impl Sync for Follow