pub struct MessageBoxMultiQuote {
pub quotes_by_recipient: Vec<RecipientQuote>,
pub totals: Option<SendListTotals>,
pub blocked_recipients: Vec<String>,
pub delivery_agent_identity_key_by_host: HashMap<String, String>,
}Expand description
Aggregated delivery quotes for multiple recipients.
Fields§
§quotes_by_recipient: Vec<RecipientQuote>§totals: Option<SendListTotals>§blocked_recipients: Vec<String>§delivery_agent_identity_key_by_host: HashMap<String, String>Trait Implementations§
Source§impl Clone for MessageBoxMultiQuote
impl Clone for MessageBoxMultiQuote
Source§fn clone(&self) -> MessageBoxMultiQuote
fn clone(&self) -> MessageBoxMultiQuote
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 MessageBoxMultiQuote
impl Debug for MessageBoxMultiQuote
Source§impl<'de> Deserialize<'de> for MessageBoxMultiQuote
impl<'de> Deserialize<'de> for MessageBoxMultiQuote
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
Auto Trait Implementations§
impl Freeze for MessageBoxMultiQuote
impl RefUnwindSafe for MessageBoxMultiQuote
impl Send for MessageBoxMultiQuote
impl Sync for MessageBoxMultiQuote
impl Unpin for MessageBoxMultiQuote
impl UnsafeUnpin for MessageBoxMultiQuote
impl UnwindSafe for MessageBoxMultiQuote
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