pub struct CheckCommand {
pub kind: CheckKind,
pub program: String,
pub args: Vec<String>,
pub env: Vec<(String, String)>,
}Fields§
§kind: CheckKind§program: String§args: Vec<String>§env: Vec<(String, String)>Trait Implementations§
Source§impl Clone for CheckCommand
impl Clone for CheckCommand
Source§fn clone(&self) -> CheckCommand
fn clone(&self) -> CheckCommand
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 moreAuto Trait Implementations§
impl Freeze for CheckCommand
impl RefUnwindSafe for CheckCommand
impl Send for CheckCommand
impl Sync for CheckCommand
impl Unpin for CheckCommand
impl UnsafeUnpin for CheckCommand
impl UnwindSafe for CheckCommand
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