pub enum JobQueryOrder {
CreatedAtAsc,
CreatedAtDesc,
TargetExecutionTimeAsc,
TargetExecutionTimeDesc,
}
Expand description
The order of jobs returned.
Variants§
CreatedAtAsc
Order by the time the job was created in ascending order.
CreatedAtDesc
Order by the time the job was created in descending order.
TargetExecutionTimeAsc
Order by the target execution time in ascending order.
TargetExecutionTimeDesc
Order by the target execution time in descending order.
Trait Implementations§
Source§impl Clone for JobQueryOrder
impl Clone for JobQueryOrder
Source§fn clone(&self) -> JobQueryOrder
fn clone(&self) -> JobQueryOrder
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 JobQueryOrder
impl Debug for JobQueryOrder
Source§impl<'de> Deserialize<'de> for JobQueryOrder
impl<'de> Deserialize<'de> for JobQueryOrder
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 From<JobQueryOrder> for JobQueryOrder
impl From<JobQueryOrder> for JobQueryOrder
Source§fn from(value: JobQueryOrder) -> Self
fn from(value: JobQueryOrder) -> Self
Converts to this type from the input type.
Source§impl Serialize for JobQueryOrder
impl Serialize for JobQueryOrder
impl Copy for JobQueryOrder
Auto Trait Implementations§
impl Freeze for JobQueryOrder
impl RefUnwindSafe for JobQueryOrder
impl Send for JobQueryOrder
impl Sync for JobQueryOrder
impl Unpin for JobQueryOrder
impl UnwindSafe for JobQueryOrder
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request