[][src]Trait activitystreams::object::AsProfile

pub trait AsProfile: Object {
    fn profile_ref(&self) -> &Profile;
fn profile_mut(&mut self) -> &mut Profile; }

Implementation trait for deriving Profile methods for a type

Any type implementing AsProfile will automatically gain methods provided by ProfileExt

Required methods

fn profile_ref(&self) -> &Profile

Immutable borrow of Profile

fn profile_mut(&mut self) -> &mut Profile

Mutable borrow of Profile

Loading content...

Implementors

impl AsProfile for Profile[src]

impl<Inner> AsProfile for ApObject<Inner> where
    Inner: AsProfile
[src]

Loading content...