pub struct InvoiceSort {
pub field: InvoiceSortField,
pub order: Option<SortOrder>,
}
Expand description
Identifies the sort field and sort order.
Fields§
§field: InvoiceSortField
The field to use for sorting.
order: Option<SortOrder>
The order to use for sorting the results.
Trait Implementations§
Source§impl Clone for InvoiceSort
impl Clone for InvoiceSort
Source§fn clone(&self) -> InvoiceSort
fn clone(&self) -> InvoiceSort
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 InvoiceSort
impl Debug for InvoiceSort
Source§impl Default for InvoiceSort
impl Default for InvoiceSort
Source§fn default() -> InvoiceSort
fn default() -> InvoiceSort
Returns the “default value” for a type. Read more
Source§impl PartialEq for InvoiceSort
impl PartialEq for InvoiceSort
Source§impl Serialize for InvoiceSort
impl Serialize for InvoiceSort
impl Eq for InvoiceSort
impl StructuralPartialEq for InvoiceSort
Auto Trait Implementations§
impl Freeze for InvoiceSort
impl RefUnwindSafe for InvoiceSort
impl Send for InvoiceSort
impl Sync for InvoiceSort
impl Unpin for InvoiceSort
impl UnwindSafe for InvoiceSort
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.