pub struct BinaryStatus {
pub installed: bool,
pub version: Option<String>,
pub error: Option<String>,
}Expand description
Result of checking a runner binary.
Fields§
§installed: boolWhether the binary was found and executable.
version: Option<String>Version string if available.
error: Option<String>Error message if check failed.
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 · 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 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