pub struct EnvCheckFailure {
pub kind: FailureKind,
pub message: String,
pub needed_by: Vec<String>,
}Expand description
One failed check, with every publisher/stage that needs it.
Fields§
§kind: FailureKind§message: StringHuman-readable description. Never contains secret values.
needed_by: Vec<String>Sources (publishers/stages) whose declared requirement failed.
Trait Implementations§
Source§impl Clone for EnvCheckFailure
impl Clone for EnvCheckFailure
Source§fn clone(&self) -> EnvCheckFailure
fn clone(&self) -> EnvCheckFailure
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 EnvCheckFailure
impl Debug for EnvCheckFailure
Auto Trait Implementations§
impl Freeze for EnvCheckFailure
impl RefUnwindSafe for EnvCheckFailure
impl Send for EnvCheckFailure
impl Sync for EnvCheckFailure
impl Unpin for EnvCheckFailure
impl UnsafeUnpin for EnvCheckFailure
impl UnwindSafe for EnvCheckFailure
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