pub struct FailStageData { /* private fields */ }
Implementations§
Source§impl FailStageData
impl FailStageData
Sourcepub fn reason(&self) -> StageFailureReason
pub fn reason(&self) -> StageFailureReason
Get the reason associated with this FailStageData
Trait Implementations§
Source§impl Arbitrary for FailStageData
impl Arbitrary for FailStageData
Source§type Parameters = ()
type Parameters = ()
The type of parameters that
arbitrary_with
accepts for configuration
of the generated Strategy
. Parameters must implement Default
.Source§type Strategy = BoxedStrategy<FailStageData>
type Strategy = BoxedStrategy<FailStageData>
The type of
Strategy
used to generate values of type Self
.Source§fn arbitrary_with((): Self::Parameters) -> Self::Strategy
fn arbitrary_with((): Self::Parameters) -> Self::Strategy
Source§impl Clone for FailStageData
impl Clone for FailStageData
Source§fn clone(&self) -> FailStageData
fn clone(&self) -> FailStageData
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 FailStageData
impl Debug for FailStageData
Source§impl<'de> Deserialize<'de> for FailStageData
impl<'de> Deserialize<'de> for FailStageData
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FailStageData
impl PartialEq for FailStageData
Source§impl Serialize for FailStageData
impl Serialize for FailStageData
impl Copy for FailStageData
impl StructuralPartialEq for FailStageData
Auto Trait Implementations§
impl Freeze for FailStageData
impl RefUnwindSafe for FailStageData
impl Send for FailStageData
impl Sync for FailStageData
impl Unpin for FailStageData
impl UnwindSafe for FailStageData
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
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