pub struct GateCheckResult {
pub passed: bool,
pub missing_bins: Vec<String>,
pub missing_env: Vec<String>,
pub missing_config: Vec<String>,
pub wrong_os: bool,
}Expand description
Result of checking skill requirements
Fields§
§passed: bool§missing_bins: Vec<String>§missing_env: Vec<String>§missing_config: Vec<String>§wrong_os: boolTrait Implementations§
Source§impl Clone for GateCheckResult
impl Clone for GateCheckResult
Source§fn clone(&self) -> GateCheckResult
fn clone(&self) -> GateCheckResult
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 GateCheckResult
impl RefUnwindSafe for GateCheckResult
impl Send for GateCheckResult
impl Sync for GateCheckResult
impl Unpin for GateCheckResult
impl UnsafeUnpin for GateCheckResult
impl UnwindSafe for GateCheckResult
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