Struct schemas::types::FollowAction

source ·
pub struct FollowAction {
    pub followee: Vec<FolloweeProp>,
    pub interact_action: InteractAction,
}
Expand description

The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.\n\nRelated actions:\n\n* [BefriendAction]: Unlike BefriendAction, FollowAction implies that the connection is not necessarily reciprocal.\n* [SubscribeAction]: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.\n* [RegisterAction]: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.\n* [JoinAction]: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.\n* [TrackAction]: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don’t follow it).

Fields§

§followee: Vec<FolloweeProp>§interact_action: InteractAction

Trait Implementations§

source§

impl Clone for FollowAction

source§

fn clone(&self) -> FollowAction

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FollowAction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for FollowAction

source§

fn default() -> FollowAction

Returns the “default value” for a type. Read more
source§

impl Schema for FollowAction

source§

fn new() -> Self

source§

fn has_lc_property(name: &str) -> bool

source§

fn add_lc_property(&mut self, name: &str, value: Types) -> Result<(), Error>

source§

fn has_property(name: &str) -> bool

source§

fn add_property(&mut self, property: &str, value: Types) -> Result<(), Error>

source§

fn add_text_propery( &mut self, property: &str, value: String ) -> Result<(), Error>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.