pub struct SmsMessageCollection {
pub messages: Vec<SmsMessage>,
}Expand description
Batch of SMS sent in one API call. Pricing/sending is per-message.
Fields§
§messages: Vec<SmsMessage>The messages to send.
Implementations§
Source§impl SmsMessageCollection
impl SmsMessageCollection
Sourcepub fn new(messages: Vec<SmsMessage>) -> Self
pub fn new(messages: Vec<SmsMessage>) -> Self
Wrap a vec of messages.
Trait Implementations§
Source§impl Clone for SmsMessageCollection
impl Clone for SmsMessageCollection
Source§fn clone(&self) -> SmsMessageCollection
fn clone(&self) -> SmsMessageCollection
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 SmsMessageCollection
impl Debug for SmsMessageCollection
Auto Trait Implementations§
impl Freeze for SmsMessageCollection
impl RefUnwindSafe for SmsMessageCollection
impl Send for SmsMessageCollection
impl Sync for SmsMessageCollection
impl Unpin for SmsMessageCollection
impl UnsafeUnpin for SmsMessageCollection
impl UnwindSafe for SmsMessageCollection
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