pub struct VerificationWarning {
pub command: String,
pub exit_code: Option<i32>,
pub output: String,
}Expand description
A warning from a pre-draft verification command failure (v0.10.8).
Fields§
§command: StringThe command that failed.
exit_code: Option<i32>The exit code (if available).
output: StringCaptured stderr/stdout output (truncated to 2000 chars).
Trait Implementations§
Source§impl Clone for VerificationWarning
impl Clone for VerificationWarning
Source§fn clone(&self) -> VerificationWarning
fn clone(&self) -> VerificationWarning
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 VerificationWarning
impl Debug for VerificationWarning
Source§impl<'de> Deserialize<'de> for VerificationWarning
impl<'de> Deserialize<'de> for VerificationWarning
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 VerificationWarning
impl RefUnwindSafe for VerificationWarning
impl Send for VerificationWarning
impl Sync for VerificationWarning
impl Unpin for VerificationWarning
impl UnsafeUnpin for VerificationWarning
impl UnwindSafe for VerificationWarning
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