Enum ora_api::client::ScheduleListOrder
source · pub enum ScheduleListOrder {
AddedAsc,
AddedDesc,
}
Expand description
The ordering of returned schedules.
Variants§
Trait Implementations§
source§impl Clone for ScheduleListOrder
impl Clone for ScheduleListOrder
source§fn clone(&self) -> ScheduleListOrder
fn clone(&self) -> ScheduleListOrder
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 ScheduleListOrder
impl Debug for ScheduleListOrder
source§impl Default for ScheduleListOrder
impl Default for ScheduleListOrder
source§fn default() -> ScheduleListOrder
fn default() -> ScheduleListOrder
Returns the “default value” for a type. Read more
impl Copy for ScheduleListOrder
Auto Trait Implementations§
impl RefUnwindSafe for ScheduleListOrder
impl Send for ScheduleListOrder
impl Sync for ScheduleListOrder
impl Unpin for ScheduleListOrder
impl UnwindSafe for ScheduleListOrder
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> 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<W> IntoHandler for Wwhere
W: Send + Sync + 'static,
impl<W> IntoHandler for Wwhere W: Send + Sync + 'static,
source§fn handler<T>(self) -> Arc<dyn RawHandler + Send + Sync>where
Self: Handler<T>,
T: Task,
fn handler<T>(self) -> Arc<dyn RawHandler + Send + Sync>where Self: Handler<T>, T: Task,
Convert
self
into a RawHandler
that can be registered
in workers.source§fn handler_with_selector<T>(
self,
selector: WorkerSelector
) -> Arc<dyn RawHandler + Send + Sync>where
Self: Handler<T>,
T: Task,
fn handler_with_selector<T>( self, selector: WorkerSelector ) -> Arc<dyn RawHandler + Send + Sync>where Self: Handler<T>, T: Task,
Convert
self
into a RawHandler
that can be registered
in workers with the given selector.