#[non_exhaustive]pub enum WorkspaceListingSortFields {
Name,
Type,
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 WorkspaceListingSortFields
impl Clone for WorkspaceListingSortFields
source§fn clone(&self) -> WorkspaceListingSortFields
fn clone(&self) -> WorkspaceListingSortFields
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 Debug for WorkspaceListingSortFields
impl Debug for WorkspaceListingSortFields
source§impl<'de> Deserialize<'de> for WorkspaceListingSortFields
impl<'de> Deserialize<'de> for WorkspaceListingSortFields
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 WorkspaceListingSortFields> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum WorkspaceListingSortFields> for &'static str
source§fn from(x: &'_derivative_strum WorkspaceListingSortFields) -> &'static str
fn from(x: &'_derivative_strum WorkspaceListingSortFields) -> &'static str
Converts to this type from the input type.
source§impl From<WorkspaceListingSortFields> for &'static str
impl From<WorkspaceListingSortFields> for &'static str
source§fn from(x: WorkspaceListingSortFields) -> &'static str
fn from(x: WorkspaceListingSortFields) -> &'static str
Converts to this type from the input type.
source§impl PartialEq for WorkspaceListingSortFields
impl PartialEq for WorkspaceListingSortFields
source§fn eq(&self, other: &WorkspaceListingSortFields) -> bool
fn eq(&self, other: &WorkspaceListingSortFields) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl SortField for WorkspaceListingSortFields
impl SortField for WorkspaceListingSortFields
fn default_sort_field() -> Self
fn default_sort_direction() -> SortDirection
impl Copy for WorkspaceListingSortFields
impl Eq for WorkspaceListingSortFields
impl StructuralPartialEq for WorkspaceListingSortFields
Auto Trait Implementations§
impl Freeze for WorkspaceListingSortFields
impl RefUnwindSafe for WorkspaceListingSortFields
impl Send for WorkspaceListingSortFields
impl Sync for WorkspaceListingSortFields
impl Unpin for WorkspaceListingSortFields
impl UnwindSafe for WorkspaceListingSortFields
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