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