pub struct BinaryInfo {
pub installed: bool,
pub version: Option<String>,
pub error: Option<String>,
}Fields§
§installed: bool§version: Option<String>§error: Option<String>Trait Implementations§
Source§impl Clone for BinaryInfo
impl Clone for BinaryInfo
Source§fn clone(&self) -> BinaryInfo
fn clone(&self) -> BinaryInfo
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 moreSource§impl Debug for BinaryInfo
impl Debug for BinaryInfo
Auto Trait Implementations§
impl Freeze for BinaryInfo
impl RefUnwindSafe for BinaryInfo
impl Send for BinaryInfo
impl Sync for BinaryInfo
impl Unpin for BinaryInfo
impl UnsafeUnpin for BinaryInfo
impl UnwindSafe for BinaryInfo
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