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