pub struct TargetStatus {
pub platform: Platform,
pub installed: bool,
pub installed_version: Option<String>,
pub drifted: bool,
pub tracked: bool,
}Expand description
Status of a skill on a single platform.
Fields§
§platform: Platform§installed: bool§installed_version: Option<String>§drifted: bool§tracked: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for TargetStatus
impl RefUnwindSafe for TargetStatus
impl Send for TargetStatus
impl Sync for TargetStatus
impl Unpin for TargetStatus
impl UnsafeUnpin for TargetStatus
impl UnwindSafe for TargetStatus
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