pub struct ListInvoicesData {
pub invoices: Vec<Invoice>,
}Expand description
Invoice list wrapper.
Fields§
§invoices: Vec<Invoice>Invoices on the account.
Trait Implementations§
Source§impl Clone for ListInvoicesData
impl Clone for ListInvoicesData
Source§fn clone(&self) -> ListInvoicesData
fn clone(&self) -> ListInvoicesData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListInvoicesData
impl Debug for ListInvoicesData
Source§impl<'de> Deserialize<'de> for ListInvoicesData
impl<'de> Deserialize<'de> for ListInvoicesData
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 ListInvoicesData
impl RefUnwindSafe for ListInvoicesData
impl Send for ListInvoicesData
impl Sync for ListInvoicesData
impl Unpin for ListInvoicesData
impl UnsafeUnpin for ListInvoicesData
impl UnwindSafe for ListInvoicesData
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