#[non_exhaustive]pub enum WorkspaceMembershipSortFields {
Name,
Email,
JoinedAt,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
source§impl Clone for WorkspaceMembershipSortFields
impl Clone for WorkspaceMembershipSortFields
source§fn clone(&self) -> WorkspaceMembershipSortFields
fn clone(&self) -> WorkspaceMembershipSortFields
Returns a copy 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<'de> Deserialize<'de> for WorkspaceMembershipSortFields
impl<'de> Deserialize<'de> for WorkspaceMembershipSortFields
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
source§impl<'_derivative_strum> From<&'_derivative_strum WorkspaceMembershipSortFields> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum WorkspaceMembershipSortFields> for &'static str
source§fn from(x: &'_derivative_strum WorkspaceMembershipSortFields) -> &'static str
fn from(x: &'_derivative_strum WorkspaceMembershipSortFields) -> &'static str
Converts to this type from the input type.
source§impl From<WorkspaceMembershipSortFields> for &'static str
impl From<WorkspaceMembershipSortFields> for &'static str
source§fn from(x: WorkspaceMembershipSortFields) -> &'static str
fn from(x: WorkspaceMembershipSortFields) -> &'static str
Converts to this type from the input type.
source§impl PartialEq for WorkspaceMembershipSortFields
impl PartialEq for WorkspaceMembershipSortFields
source§fn eq(&self, other: &WorkspaceMembershipSortFields) -> bool
fn eq(&self, other: &WorkspaceMembershipSortFields) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl SortField for WorkspaceMembershipSortFields
impl SortField for WorkspaceMembershipSortFields
fn default_sort_field() -> Self
fn default_sort_direction() -> SortDirection
impl Copy for WorkspaceMembershipSortFields
impl Eq for WorkspaceMembershipSortFields
impl StructuralPartialEq for WorkspaceMembershipSortFields
Auto Trait Implementations§
impl Freeze for WorkspaceMembershipSortFields
impl RefUnwindSafe for WorkspaceMembershipSortFields
impl Send for WorkspaceMembershipSortFields
impl Sync for WorkspaceMembershipSortFields
impl Unpin for WorkspaceMembershipSortFields
impl UnwindSafe for WorkspaceMembershipSortFields
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