pub struct AutomationAvailability {
pub platform: Platform,
pub tool_name: &'static str,
pub is_available: bool,
pub install_hint: Option<&'static str>,
}Expand description
Information about automation tool availability
Fields§
§platform: Platform§tool_name: &'static str§is_available: bool§install_hint: Option<&'static str>Trait Implementations§
Source§impl Clone for AutomationAvailability
impl Clone for AutomationAvailability
Source§fn clone(&self) -> AutomationAvailability
fn clone(&self) -> AutomationAvailability
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 AutomationAvailability
impl RefUnwindSafe for AutomationAvailability
impl Send for AutomationAvailability
impl Sync for AutomationAvailability
impl Unpin for AutomationAvailability
impl UnsafeUnpin for AutomationAvailability
impl UnwindSafe for AutomationAvailability
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