pub struct DispatchFailureBuilder { /* private fields */ }
Available on crate feature
client
only.Expand description
Builder for DispatchFailure
.
Implementations§
Source§impl DispatchFailureBuilder
impl DispatchFailureBuilder
Sourcepub fn source(self, source: impl Into<ConnectorError>) -> Self
pub fn source(self, source: impl Into<ConnectorError>) -> Self
Sets the error source.
Sourcepub fn set_source(&mut self, source: Option<ConnectorError>) -> &mut Self
pub fn set_source(&mut self, source: Option<ConnectorError>) -> &mut Self
Sets the error source.
Sourcepub fn build(self) -> DispatchFailure
pub fn build(self) -> DispatchFailure
Builds the error context.
Trait Implementations§
Source§impl Debug for DispatchFailureBuilder
impl Debug for DispatchFailureBuilder
Source§impl Default for DispatchFailureBuilder
impl Default for DispatchFailureBuilder
Source§fn default() -> DispatchFailureBuilder
fn default() -> DispatchFailureBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DispatchFailureBuilder
impl !RefUnwindSafe for DispatchFailureBuilder
impl Send for DispatchFailureBuilder
impl Sync for DispatchFailureBuilder
impl Unpin for DispatchFailureBuilder
impl !UnwindSafe for DispatchFailureBuilder
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 moreCreates a shared type from an unshared type.