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