pub struct EstimateMessageRecipients {
pub page: i64,
pub links: PaginationLinks,
pub estimate_message_recipients: Vec<EstimateMessageRecipient>,
pub total_pages: i64,
pub per_page: i64,
pub total_entries: i64,
pub previous_page: Option<i64>,
pub next_page: Option<i64>,
}Fields§
§page: i64§links: PaginationLinks§estimate_message_recipients: Vec<EstimateMessageRecipient>§total_pages: i64§per_page: i64§total_entries: i64§previous_page: Option<i64>§next_page: Option<i64>Trait Implementations§
Source§impl Debug for EstimateMessageRecipients
impl Debug for EstimateMessageRecipients
Source§impl<'de> Deserialize<'de> for EstimateMessageRecipients
impl<'de> Deserialize<'de> for EstimateMessageRecipients
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 Display for EstimateMessageRecipients
impl Display for EstimateMessageRecipients
Auto Trait Implementations§
impl Freeze for EstimateMessageRecipients
impl RefUnwindSafe for EstimateMessageRecipients
impl Send for EstimateMessageRecipients
impl Sync for EstimateMessageRecipients
impl Unpin for EstimateMessageRecipients
impl UnwindSafe for EstimateMessageRecipients
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