pub struct PrereqResult {
pub target: DeployTarget,
pub missing_tools: Vec<String>,
pub passed: bool,
}Expand description
Result of checking prerequisites for a deploy target.
Fields§
§target: DeployTarget§missing_tools: Vec<String>§passed: boolTrait Implementations§
Source§impl Clone for PrereqResult
impl Clone for PrereqResult
Source§fn clone(&self) -> PrereqResult
fn clone(&self) -> PrereqResult
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 moreAuto Trait Implementations§
impl Freeze for PrereqResult
impl RefUnwindSafe for PrereqResult
impl Send for PrereqResult
impl Sync for PrereqResult
impl Unpin for PrereqResult
impl UnsafeUnpin for PrereqResult
impl UnwindSafe for PrereqResult
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