[][src]Trait activitystreams::object::AsPlace

pub trait AsPlace: Object {
    fn place_ref(&self) -> &Place;
fn place_mut(&mut self) -> &mut Place; }

Implementation trait for deriving Place methods for a type

Any type implementing AsPlace will automatically gain methods provided by PlaceExt

Required methods

fn place_ref(&self) -> &Place

Immutable borrow of Place

fn place_mut(&mut self) -> &mut Place

Mutable borrow of Place

Loading content...

Implementors

impl AsPlace for Place[src]

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

Loading content...