pub struct InvoiceQuery {
pub filter: InvoiceFilter,
pub sort: Option<InvoiceSort>,
}
Expand description
Describes query criteria for searching invoices.
Fields§
§filter: InvoiceFilter
Query filters to apply in searching invoices. For more information, see Search for invoices.
sort: Option<InvoiceSort>
Describes the sort order for the search result.
Trait Implementations§
Source§impl Clone for InvoiceQuery
impl Clone for InvoiceQuery
Source§fn clone(&self) -> InvoiceQuery
fn clone(&self) -> InvoiceQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InvoiceQuery
impl Debug for InvoiceQuery
Source§impl Default for InvoiceQuery
impl Default for InvoiceQuery
Source§fn default() -> InvoiceQuery
fn default() -> InvoiceQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for InvoiceQuery
impl PartialEq for InvoiceQuery
Source§impl Serialize for InvoiceQuery
impl Serialize for InvoiceQuery
impl Eq for InvoiceQuery
impl StructuralPartialEq for InvoiceQuery
Auto Trait Implementations§
impl Freeze for InvoiceQuery
impl RefUnwindSafe for InvoiceQuery
impl Send for InvoiceQuery
impl Sync for InvoiceQuery
impl Unpin for InvoiceQuery
impl UnwindSafe for InvoiceQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.