pub struct PendingInteraction {
pub request_id: String,
pub batch_id: String,
pub title: String,
pub message: String,
pub items: Vec<PendingInteractionItem>,
}Fields§
§request_id: String§batch_id: String§title: String§message: String§items: Vec<PendingInteractionItem>Trait Implementations§
Source§impl Clone for PendingInteraction
impl Clone for PendingInteraction
Source§fn clone(&self) -> PendingInteraction
fn clone(&self) -> PendingInteraction
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 PendingInteraction
impl Debug for PendingInteraction
Source§impl<'de> Deserialize<'de> for PendingInteraction
impl<'de> Deserialize<'de> for PendingInteraction
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 PendingInteraction
impl PartialEq for PendingInteraction
Source§impl Serialize for PendingInteraction
impl Serialize for PendingInteraction
impl StructuralPartialEq for PendingInteraction
Auto Trait Implementations§
impl Freeze for PendingInteraction
impl RefUnwindSafe for PendingInteraction
impl Send for PendingInteraction
impl Sync for PendingInteraction
impl Unpin for PendingInteraction
impl UnsafeUnpin for PendingInteraction
impl UnwindSafe for PendingInteraction
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