[][src]Trait activitystreams::object::AsTombstone

pub trait AsTombstone: Object {
    fn tombstone_ref(&self) -> &Tombstone;
fn tombstone_mut(&mut self) -> &mut Tombstone; }

Implementation trait for deriving Tombstone methods for a type

Any type implementing AsTombstone will automatically gain methods provided by TombstoneExt

Required methods

fn tombstone_ref(&self) -> &Tombstone

Immutable borrow of Tombstone

fn tombstone_mut(&mut self) -> &mut Tombstone

Mutable borrow of Tombstone

Loading content...

Implementors

impl AsTombstone for Tombstone[src]

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

Loading content...