pub struct RequirementsCheck {
pub missing_bins: Vec<String>,
pub missing_any_bins: Vec<String>,
pub missing_env: Vec<String>,
pub missing_config: Vec<String>,
pub missing_os: Vec<String>,
pub eligible: bool,
pub config_checks: Vec<ConfigCheck>,
}Fields§
§missing_bins: Vec<String>§missing_any_bins: Vec<String>§missing_env: Vec<String>§missing_config: Vec<String>§missing_os: Vec<String>§eligible: bool§config_checks: Vec<ConfigCheck>Trait Implementations§
Source§impl Clone for RequirementsCheck
impl Clone for RequirementsCheck
Source§fn clone(&self) -> RequirementsCheck
fn clone(&self) -> RequirementsCheck
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 moreSource§impl Debug for RequirementsCheck
impl Debug for RequirementsCheck
Source§impl Default for RequirementsCheck
impl Default for RequirementsCheck
Source§fn default() -> RequirementsCheck
fn default() -> RequirementsCheck
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RequirementsCheck
impl RefUnwindSafe for RequirementsCheck
impl Send for RequirementsCheck
impl Sync for RequirementsCheck
impl Unpin for RequirementsCheck
impl UnsafeUnpin for RequirementsCheck
impl UnwindSafe for RequirementsCheck
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