pub struct Announcement {Show 13 fields
pub id: String,
pub content: String,
pub starts_at: Option<String>,
pub ends_at: Option<String>,
pub all_day: bool,
pub published_at: String,
pub updated_at: String,
pub read: bool,
pub mentions: Vec<Mention>,
pub statuses: Vec<Status>,
pub tags: Vec<Tag>,
pub emojis: Vec<CustomEmoji>,
pub reactions: Vec<AnnouncementReaction>,
}Expand description
Represents an announcement from the server.
Fields§
§id: StringThe ID of the announcement in the database.
content: StringThe textual content of the announcement.
starts_at: Option<String>When the announcement will start (ISO 8601).
ends_at: Option<String>When the announcement will end (ISO 8601).
all_day: boolWhether the announcement is a continuous event.
published_at: StringWhen the announcement was published (ISO 8601).
updated_at: StringWhen the announcement was last updated (ISO 8601).
read: boolWhether the announcement has been read by the current user.
mentions: Vec<Mention>Accounts mentioned in the announcement content.
statuses: Vec<Status>Statuses linked in the announcement content.
Tags linked in the announcement content.
emojis: Vec<CustomEmoji>Custom emoji used in the announcement content.
reactions: Vec<AnnouncementReaction>Reactions to the announcement.
Trait Implementations§
Source§impl Clone for Announcement
impl Clone for Announcement
Source§fn clone(&self) -> Announcement
fn clone(&self) -> Announcement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Announcement
impl Debug for Announcement
Source§impl<'de> Deserialize<'de> for Announcement
impl<'de> Deserialize<'de> for Announcement
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Announcement
impl RefUnwindSafe for Announcement
impl Send for Announcement
impl Sync for Announcement
impl Unpin for Announcement
impl UnwindSafe for Announcement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more