Struct viz_core::handler::OrElse

source ·
pub struct OrElse<H, F> { /* private fields */ }
Expand description

Calls op if the output is Err, otherwise returns the Ok value of the output.

Trait Implementations§

source§

impl<H: Clone, F: Clone> Clone for OrElse<H, F>

source§

fn clone(&self) -> OrElse<H, F>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<H: Debug, F: Debug> Debug for OrElse<H, F>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<H, F, I, O> Handler<I> for OrElse<H, F>where I: Send + 'static, O: Send, H: Handler<I, Output = Result<O>> + Clone, F: Handler<Error, Output = H::Output> + Clone,

§

type Output = <F as Handler<Error>>::Output

The returned type after the call operator is used.
source§

fn call<'life0, 'async_trait>( &'life0 self, i: I ) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Performs the call operation.

Auto Trait Implementations§

§

impl<H, F> RefUnwindSafe for OrElse<H, F>where F: RefUnwindSafe, H: RefUnwindSafe,

§

impl<H, F> Send for OrElse<H, F>where F: Send, H: Send,

§

impl<H, F> Sync for OrElse<H, F>where F: Sync, H: Sync,

§

impl<H, F> Unpin for OrElse<H, F>where F: Unpin, H: Unpin,

§

impl<H, F> UnwindSafe for OrElse<H, F>where F: UnwindSafe, H: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
source§

impl<I, T> HandlerExt<I> for Twhere T: Handler<I> + ?Sized,

source§

fn boxed(self) -> BoxHandler<I, Self::Output>where Self: Sized,

Converts this Handler into a BoxHandler.
source§

fn before<F>(self, f: F) -> Before<Self, F>where Self: Sized,

Maps the input before the handler calls.
source§

fn after<F>(self, f: F) -> After<Self, F>where Self: Sized,

Maps the output Result<T> after the handler called.
source§

fn around<F>(self, f: F) -> Around<Self, F>where Self: Sized,

Wraps around the remaining handler or middleware chain.
source§

fn map<F>(self, f: F) -> Map<Self, F>where Self: Sized,

Maps the Ok value of the output if after the handler called.
source§

fn map_into_response<O>(self) -> MapInToResponse<Self, O>where Self: Sized,

Maps the handler’s output type to the Response.
source§

fn and_then<F>(self, f: F) -> AndThen<Self, F>where Self: Sized,

Calls op if the result is Ok, otherwise returns the Err value of self.
source§

fn map_err<F>(self, f: F) -> MapErr<Self, F>where Self: Sized,

Maps the Err value of the output if after the handler called.
source§

fn or_else<F>(self, f: F) -> OrElse<Self, F>where Self: Sized,

Calls op if the output is Err, otherwise returns the Ok value of the output.
source§

fn catch_error<F, R, E>(self, f: F) -> CatchError<Self, F, R, E>where Self: Sized,

Catches rejected error while calling the handler.
source§

fn catch_unwind<F>(self, f: F) -> CatchUnwind<Self, F>where Self: Sized,

Catches unwinding panics while calling the handler.
source§

fn with<T>(self, t: T) -> T::Outputwhere T: Transform<Self>, Self: Sized,

Returns a new Handler that wrapping the Self and a type implementing Transform.
source§

fn with_fn<F>(self, f: F) -> Selfwhere F: Fn(Self) -> Self, Self: Sized,

Maps the handler.
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more