pub struct PendingInteractionItem {
pub action_id: String,
pub kind: InteractionKind,
pub expires_at: Option<String>,
pub preview: InteractionPreview,
}Fields§
§action_id: String§kind: InteractionKind§expires_at: Option<String>§preview: InteractionPreviewTrait Implementations§
Source§impl Clone for PendingInteractionItem
impl Clone for PendingInteractionItem
Source§fn clone(&self) -> PendingInteractionItem
fn clone(&self) -> PendingInteractionItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PendingInteractionItem
impl Debug for PendingInteractionItem
Source§impl<'de> Deserialize<'de> for PendingInteractionItem
impl<'de> Deserialize<'de> for PendingInteractionItem
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
Source§impl PartialEq for PendingInteractionItem
impl PartialEq for PendingInteractionItem
Source§impl Serialize for PendingInteractionItem
impl Serialize for PendingInteractionItem
impl StructuralPartialEq for PendingInteractionItem
Auto Trait Implementations§
impl Freeze for PendingInteractionItem
impl RefUnwindSafe for PendingInteractionItem
impl Send for PendingInteractionItem
impl Sync for PendingInteractionItem
impl Unpin for PendingInteractionItem
impl UnsafeUnpin for PendingInteractionItem
impl UnwindSafe for PendingInteractionItem
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