pub struct CheckResult {
pub package: String,
pub upstream: Option<String>,
pub fedora_rawhide: Option<String>,
pub fedora_stable: Option<VersionWithDetail>,
pub centos_stream: Option<VersionWithDetail>,
pub hs9: Option<HyperscaleResult>,
pub hs10: Option<HyperscaleResult>,
/* private fields */
}Expand description
Result of checking a single package across selected distros.
Fields§
§package: String§upstream: Option<String>§fedora_rawhide: Option<String>§fedora_stable: Option<VersionWithDetail>§centos_stream: Option<VersionWithDetail>§hs9: Option<HyperscaleResult>§hs10: Option<HyperscaleResult>Implementations§
Source§impl CheckResult
impl CheckResult
Sourcepub fn is_outdated(&self) -> bool
pub fn is_outdated(&self) -> bool
Whether any Hyperscale build is outdated relative to the reference.
Sourcepub fn ref_version(&self) -> Option<&str>
pub fn ref_version(&self) -> Option<&str>
The reference version used for tracking.
Trait Implementations§
Source§impl Debug for CheckResult
impl Debug for CheckResult
Auto Trait Implementations§
impl Freeze for CheckResult
impl RefUnwindSafe for CheckResult
impl Send for CheckResult
impl Sync for CheckResult
impl Unpin for CheckResult
impl UnsafeUnpin for CheckResult
impl UnwindSafe for CheckResult
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