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