Enum ora_api::client::LabelValueMatch
source · pub enum LabelValueMatch {
AnyValue,
Value(Value),
}
Expand description
Match label values.
Variants§
Implementations§
Trait Implementations§
source§impl Clone for LabelValueMatch
impl Clone for LabelValueMatch
source§fn clone(&self) -> LabelValueMatch
fn clone(&self) -> LabelValueMatch
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 LabelValueMatch
impl Debug for LabelValueMatch
source§impl Default for LabelValueMatch
impl Default for LabelValueMatch
source§fn default() -> LabelValueMatch
fn default() -> LabelValueMatch
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for LabelValueMatch
impl Send for LabelValueMatch
impl Sync for LabelValueMatch
impl Unpin for LabelValueMatch
impl UnwindSafe for LabelValueMatch
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.