pub struct Action<S: AsRef<str>> {Show 15 fields
pub action_id: S,
pub typ: S,
pub sub_typ: Option<S>,
pub issuer_tag: S,
pub parent_id: Option<S>,
pub root_id: Option<S>,
pub audience_tag: Option<S>,
pub content: Option<S>,
pub attachments: Option<Vec<S>>,
pub subject: Option<S>,
pub created_at: Timestamp,
pub expires_at: Option<Timestamp>,
pub visibility: Option<char>,
pub flags: Option<S>,
pub x: Option<Value>,
}Fields§
§action_id: S§typ: S§sub_typ: Option<S>§issuer_tag: S§parent_id: Option<S>§root_id: Option<S>§audience_tag: Option<S>§content: Option<S>§attachments: Option<Vec<S>>§subject: Option<S>§created_at: Timestamp§expires_at: Option<Timestamp>§visibility: Option<char>§flags: Option<S>§x: Option<Value>Auto Trait Implementations§
impl<S> Freeze for Action<S>where
S: Freeze,
impl<S> RefUnwindSafe for Action<S>where
S: RefUnwindSafe,
impl<S> Send for Action<S>where
S: Send,
impl<S> Sync for Action<S>where
S: Sync,
impl<S> Unpin for Action<S>where
S: Unpin,
impl<S> UnsafeUnpin for Action<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for Action<S>where
S: UnwindSafe,
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