pub struct SendReceipt {
pub message_ids: Vec<String>,
pub visible_texts: Vec<String>,
}Expand description
Message ids produced by a send operation.
Fields§
§message_ids: Vec<String>§visible_texts: Vec<String>Implementations§
Source§impl SendReceipt
impl SendReceipt
pub fn last_message_id(&self) -> Option<&str>
Trait Implementations§
Source§impl Clone for SendReceipt
impl Clone for SendReceipt
Source§fn clone(&self) -> SendReceipt
fn clone(&self) -> SendReceipt
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 SendReceipt
impl Debug for SendReceipt
Source§impl PartialEq for SendReceipt
impl PartialEq for SendReceipt
Source§fn eq(&self, other: &SendReceipt) -> bool
fn eq(&self, other: &SendReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SendReceipt
impl StructuralPartialEq for SendReceipt
Auto Trait Implementations§
impl Freeze for SendReceipt
impl RefUnwindSafe for SendReceipt
impl Send for SendReceipt
impl Sync for SendReceipt
impl Unpin for SendReceipt
impl UnsafeUnpin for SendReceipt
impl UnwindSafe for SendReceipt
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