pub struct UserSortInput {
pub name: Option<Box<UserNameSort>>,
pub display_name: Option<Box<UserDisplayNameSort>>,
}Expand description
User sorting options.
Fields§
§name: Option<Box<UserNameSort>>Sort by user name
display_name: Option<Box<UserDisplayNameSort>>Sort by user display name
Trait Implementations§
Source§impl Clone for UserSortInput
impl Clone for UserSortInput
Source§fn clone(&self) -> UserSortInput
fn clone(&self) -> UserSortInput
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 UserSortInput
impl Debug for UserSortInput
Source§impl Default for UserSortInput
impl Default for UserSortInput
Source§fn default() -> UserSortInput
fn default() -> UserSortInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserSortInput
impl<'de> Deserialize<'de> for UserSortInput
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 UserSortInput
impl RefUnwindSafe for UserSortInput
impl Send for UserSortInput
impl Sync for UserSortInput
impl Unpin for UserSortInput
impl UnwindSafe for UserSortInput
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