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