pub enum TzdataStatus {
NotProbed,
NotFound(String),
Found {
path: String,
detected_version: Option<String>,
sha256: String,
},
}Expand description
The installed-tzdata.zi probe (explicit path only — doctor never reads the host tree implicitly).
Variants§
Trait Implementations§
Source§impl Clone for TzdataStatus
impl Clone for TzdataStatus
Source§fn clone(&self) -> TzdataStatus
fn clone(&self) -> TzdataStatus
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 TzdataStatus
impl Debug for TzdataStatus
impl Eq for TzdataStatus
Source§impl PartialEq for TzdataStatus
impl PartialEq for TzdataStatus
Source§fn eq(&self, other: &TzdataStatus) -> bool
fn eq(&self, other: &TzdataStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TzdataStatus
Auto Trait Implementations§
impl Freeze for TzdataStatus
impl RefUnwindSafe for TzdataStatus
impl Send for TzdataStatus
impl Sync for TzdataStatus
impl Unpin for TzdataStatus
impl UnsafeUnpin for TzdataStatus
impl UnwindSafe for TzdataStatus
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