#[non_exhaustive]pub enum GroupProjectsOrderBy {
Id,
Name,
Path,
CreatedAt,
UpdatedAt,
Similarity,
LastActivityAt,
StarCount,
}Expand description
Keys project results may be ordered by.
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.
Id
Order by the user ID.
Name
Order by the user display name.
Path
Order by the path.
CreatedAt
Order by the creation date of the project.
UpdatedAt
Order by the last updated date of the project.
Similarity
Order by a similarity score based on the search.
LastActivityAt
Order by the last activity date of the project.
StarCount
Order by star count.
Trait Implementations§
Source§impl Clone for GroupProjectsOrderBy
impl Clone for GroupProjectsOrderBy
Source§fn clone(&self) -> GroupProjectsOrderBy
fn clone(&self) -> GroupProjectsOrderBy
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 GroupProjectsOrderBy
impl Debug for GroupProjectsOrderBy
Source§impl Default for GroupProjectsOrderBy
impl Default for GroupProjectsOrderBy
Source§fn default() -> GroupProjectsOrderBy
fn default() -> GroupProjectsOrderBy
Returns the “default value” for a type. Read more
Source§impl ParamValue<'static> for GroupProjectsOrderBy
impl ParamValue<'static> for GroupProjectsOrderBy
Source§impl PartialEq for GroupProjectsOrderBy
impl PartialEq for GroupProjectsOrderBy
impl Copy for GroupProjectsOrderBy
impl Eq for GroupProjectsOrderBy
impl StructuralPartialEq for GroupProjectsOrderBy
Auto Trait Implementations§
impl Freeze for GroupProjectsOrderBy
impl RefUnwindSafe for GroupProjectsOrderBy
impl Send for GroupProjectsOrderBy
impl Sync for GroupProjectsOrderBy
impl Unpin for GroupProjectsOrderBy
impl UnsafeUnpin for GroupProjectsOrderBy
impl UnwindSafe for GroupProjectsOrderBy
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more