pub struct OperationRegistry<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5> { /* private fields */ }Trait Implementations§
Source§impl<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5> From<OperationRegistry<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5>> for Router<B>where
B: Send + 'static,
Op0: Handler<B, In0, HealthcheckOperationInput>,
In0: 'static + Send,
Op1: Handler<B, In1, ListOperationInput>,
In1: 'static + Send,
Op2: Handler<B, In2, PrometheusTargetOperationInput>,
In2: 'static + Send,
Op3: Handler<B, In3, RestartOperationInput>,
In3: 'static + Send,
Op4: Handler<B, In4, StartOperationInput>,
In4: 'static + Send,
Op5: Handler<B, In5, StopOperationInput>,
In5: 'static + Send,
impl<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5> From<OperationRegistry<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5>> for Router<B>where
B: Send + 'static,
Op0: Handler<B, In0, HealthcheckOperationInput>,
In0: 'static + Send,
Op1: Handler<B, In1, ListOperationInput>,
In1: 'static + Send,
Op2: Handler<B, In2, PrometheusTargetOperationInput>,
In2: 'static + Send,
Op3: Handler<B, In3, RestartOperationInput>,
In3: 'static + Send,
Op4: Handler<B, In4, StartOperationInput>,
In4: 'static + Send,
Op5: Handler<B, In5, StopOperationInput>,
In5: 'static + Send,
Source§fn from(
registry: OperationRegistry<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5>,
) -> Self
fn from( registry: OperationRegistry<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5>, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5> Freeze for OperationRegistry<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5>
impl<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5> RefUnwindSafe for OperationRegistry<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5>where
Op0: RefUnwindSafe,
Op1: RefUnwindSafe,
Op2: RefUnwindSafe,
Op3: RefUnwindSafe,
Op4: RefUnwindSafe,
Op5: RefUnwindSafe,
B: RefUnwindSafe,
In0: RefUnwindSafe,
In1: RefUnwindSafe,
In2: RefUnwindSafe,
In3: RefUnwindSafe,
In4: RefUnwindSafe,
In5: RefUnwindSafe,
impl<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5> Send for OperationRegistry<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5>
impl<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5> Sync for OperationRegistry<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5>
impl<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5> Unpin for OperationRegistry<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5>
impl<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5> UnwindSafe for OperationRegistry<B, Op0, In0, Op1, In1, Op2, In2, Op3, In3, Op4, In4, Op5, In5>where
Op0: UnwindSafe,
Op1: UnwindSafe,
Op2: UnwindSafe,
Op3: UnwindSafe,
Op4: UnwindSafe,
Op5: UnwindSafe,
B: UnwindSafe,
In0: UnwindSafe,
In1: UnwindSafe,
In2: UnwindSafe,
In3: UnwindSafe,
In4: UnwindSafe,
In5: UnwindSafe,
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<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