pub struct PassOutcome {
pub pass: String,
pub detail: String,
pub ok: bool,
}Expand description
What one pass did.
Fields§
§pass: String§detail: StringOne line of human-readable detail.
ok: boolFalse when the pass errored. Upkeep is best-effort: one failing pass must not stop the others, and must not fail the command.
Trait Implementations§
Source§impl Clone for PassOutcome
impl Clone for PassOutcome
Source§fn clone(&self) -> PassOutcome
fn clone(&self) -> PassOutcome
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 PassOutcome
impl Debug for PassOutcome
Source§impl<'de> Deserialize<'de> for PassOutcome
impl<'de> Deserialize<'de> for PassOutcome
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
Auto Trait Implementations§
impl Freeze for PassOutcome
impl RefUnwindSafe for PassOutcome
impl Send for PassOutcome
impl Sync for PassOutcome
impl Unpin for PassOutcome
impl UnsafeUnpin for PassOutcome
impl UnwindSafe for PassOutcome
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