pub trait FollowActionTrait {
    // Required methods
    fn get_followee(&self) -> &[FolloweeProperty];
    fn take_followee(&mut self) -> Vec<FolloweeProperty>;
}
Expand description

This trait is for properties from https://schema.org/FollowAction.

Required Methods§

source

fn get_followee(&self) -> &[FolloweeProperty]

Get https://schema.org/followee from Self as borrowed slice.

source

fn take_followee(&mut self) -> Vec<FolloweeProperty>

Take https://schema.org/followee from Self as owned vector.

Implementors§