pub struct ActionView {Show 17 fields
pub action_id: Box<str>,
pub typ: Box<str>,
pub sub_typ: Option<Box<str>>,
pub parent_id: Option<Box<str>>,
pub root_id: Option<Box<str>>,
pub issuer: ProfileInfo,
pub audience: Option<ProfileInfo>,
pub content: Option<Value>,
pub attachments: Option<Vec<AttachmentView>>,
pub subject: Option<Box<str>>,
pub created_at: Timestamp,
pub expires_at: Option<Timestamp>,
pub status: Option<Box<str>>,
pub stat: Option<Value>,
pub visibility: Option<char>,
pub flags: Option<Box<str>>,
pub x: Option<Value>,
}Fields§
§action_id: Box<str>§typ: Box<str>§sub_typ: Option<Box<str>>§parent_id: Option<Box<str>>§root_id: Option<Box<str>>§issuer: ProfileInfo§audience: Option<ProfileInfo>§content: Option<Value>§attachments: Option<Vec<AttachmentView>>§subject: Option<Box<str>>§created_at: Timestamp§expires_at: Option<Timestamp>§status: Option<Box<str>>§stat: Option<Value>§visibility: Option<char>§flags: Option<Box<str>>§x: Option<Value>Trait Implementations§
Source§impl Clone for ActionView
impl Clone for ActionView
Source§fn clone(&self) -> ActionView
fn clone(&self) -> ActionView
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 ActionView
impl Debug for ActionView
Auto Trait Implementations§
impl Freeze for ActionView
impl RefUnwindSafe for ActionView
impl Send for ActionView
impl Sync for ActionView
impl Unpin for ActionView
impl UnsafeUnpin for ActionView
impl UnwindSafe for ActionView
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