pub struct BinaryStatus {
pub name: String,
pub available: bool,
pub path: Option<String>,
}Expand description
Availability status for an external binary.
Fields§
§name: String§available: bool§path: Option<String>Trait Implementations§
Source§impl Clone for BinaryStatus
impl Clone for BinaryStatus
Source§fn clone(&self) -> BinaryStatus
fn clone(&self) -> BinaryStatus
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 BinaryStatus
impl Debug for BinaryStatus
Auto Trait Implementations§
impl Freeze for BinaryStatus
impl RefUnwindSafe for BinaryStatus
impl Send for BinaryStatus
impl Sync for BinaryStatus
impl Unpin for BinaryStatus
impl UnsafeUnpin for BinaryStatus
impl UnwindSafe for BinaryStatus
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