pub struct StepFailure {
pub error: StepError,
pub location: Option<FailureLocation>,
}Expand description
A caught step failure plus its (optional) source location.
Fields§
§error: StepError§location: Option<FailureLocation>Implementations§
Source§impl StepFailure
impl StepFailure
Sourcepub fn bare(error: StepError) -> StepFailure
pub fn bare(error: StepError) -> StepFailure
A failure with no attached location (fallback-line path).
Trait Implementations§
Source§impl Clone for StepFailure
impl Clone for StepFailure
Source§fn clone(&self) -> StepFailure
fn clone(&self) -> StepFailure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StepFailure
impl Debug for StepFailure
Source§impl PartialEq for StepFailure
impl PartialEq for StepFailure
impl StructuralPartialEq for StepFailure
Auto Trait Implementations§
impl Freeze for StepFailure
impl RefUnwindSafe for StepFailure
impl Send for StepFailure
impl Sync for StepFailure
impl Unpin for StepFailure
impl UnsafeUnpin for StepFailure
impl UnwindSafe for StepFailure
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> 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