pub struct BatchMessageItem {
pub to: String,
pub text: String,
}Expand description
A single message in a batch request.
Fields§
§to: StringRecipient phone number in E.164 format.
text: StringMessage content (max 1600 characters).
Trait Implementations§
Source§impl Clone for BatchMessageItem
impl Clone for BatchMessageItem
Source§fn clone(&self) -> BatchMessageItem
fn clone(&self) -> BatchMessageItem
Returns a duplicate of the value. Read more
1.0.0 · 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 BatchMessageItem
impl Debug for BatchMessageItem
Auto Trait Implementations§
impl Freeze for BatchMessageItem
impl RefUnwindSafe for BatchMessageItem
impl Send for BatchMessageItem
impl Sync for BatchMessageItem
impl Unpin for BatchMessageItem
impl UnwindSafe for BatchMessageItem
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