pub struct CustomerSortInput {
pub name: Option<Box<NameSort>>,
pub created_at: Option<Box<CustomerCreatedAtSort>>,
pub owner: Option<Box<OwnerSort>>,
pub status: Option<Box<CustomerStatusSort>>,
pub revenue: Option<Box<RevenueSort>>,
pub size: Option<Box<SizeSort>>,
pub tier: Option<Box<TierSort>>,
pub approximate_need_count: Option<Box<ApproximateNeedCountSort>>,
}Expand description
Customer sorting options.
Fields§
§name: Option<Box<NameSort>>Sort by name
created_at: Option<Box<CustomerCreatedAtSort>>Sort by customer creation date
owner: Option<Box<OwnerSort>>Sort by owner name
status: Option<Box<CustomerStatusSort>>Sort by customer status
revenue: Option<Box<RevenueSort>>Sort by customer generated revenue
size: Option<Box<SizeSort>>Sort by customer size
tier: Option<Box<TierSort>>Sort by customer tier
approximate_need_count: Option<Box<ApproximateNeedCountSort>>Sort by approximate customer need count
Trait Implementations§
Source§impl Clone for CustomerSortInput
impl Clone for CustomerSortInput
Source§fn clone(&self) -> CustomerSortInput
fn clone(&self) -> CustomerSortInput
Returns a duplicate of the value. Read more
1.0.0 · 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 CustomerSortInput
impl Debug for CustomerSortInput
Source§impl Default for CustomerSortInput
impl Default for CustomerSortInput
Source§fn default() -> CustomerSortInput
fn default() -> CustomerSortInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomerSortInput
impl<'de> Deserialize<'de> for CustomerSortInput
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 CustomerSortInput
impl RefUnwindSafe for CustomerSortInput
impl Send for CustomerSortInput
impl Sync for CustomerSortInput
impl Unpin for CustomerSortInput
impl UnwindSafe for CustomerSortInput
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