pub trait DeliverableObject: Object {
// Required methods
fn to(&self) -> &[Url];
fn cc(&self) -> &[Url];
// Provided methods
fn is_public(&self) -> bool { ... }
fn has_named_recipient(&self, actor_id: &Url) -> bool { ... }
}Expand description
An object that has associated delivery fields
Required Methods§
Provided Methods§
Sourcefn has_named_recipient(&self, actor_id: &Url) -> bool
fn has_named_recipient(&self, actor_id: &Url) -> bool
Determine if a given actor is in the list of recipients for this object