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