pub struct SanitizedToolFailure {
pub argument_summary: String,
pub error_summary: String,
pub exit_code: Option<i32>,
}Expand description
Sanitized failure details safe to persist locally and summarize externally.
Fields§
§argument_summary: String§error_summary: String§exit_code: Option<i32>Trait Implementations§
Source§impl Clone for SanitizedToolFailure
impl Clone for SanitizedToolFailure
Source§fn clone(&self) -> SanitizedToolFailure
fn clone(&self) -> SanitizedToolFailure
Returns a duplicate 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 SanitizedToolFailure
impl Debug for SanitizedToolFailure
Source§impl<'de> Deserialize<'de> for SanitizedToolFailure
impl<'de> Deserialize<'de> for SanitizedToolFailure
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 SanitizedToolFailure
impl PartialEq for SanitizedToolFailure
Source§impl Serialize for SanitizedToolFailure
impl Serialize for SanitizedToolFailure
impl Eq for SanitizedToolFailure
impl StructuralPartialEq for SanitizedToolFailure
Auto Trait Implementations§
impl Freeze for SanitizedToolFailure
impl RefUnwindSafe for SanitizedToolFailure
impl Send for SanitizedToolFailure
impl Sync for SanitizedToolFailure
impl Unpin for SanitizedToolFailure
impl UnsafeUnpin for SanitizedToolFailure
impl UnwindSafe for SanitizedToolFailure
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.