#[non_exhaustive]pub struct Verified {
pub source: Source,
pub checked: &'static str,
pub against: &'static str,
}Expand description
How a catalogue was established, so a stale one can be recognised as stale.
Recorded rather than described in prose because the entries below were gathered three different ways, and the weakest of them is the one a reader most needs to know about.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.source: SourceWhere the list came from.
checked: &'static strISO date it was last checked.
against: &'static strThe CLI release it was checked against.
Trait Implementations§
impl Copy for Verified
Source§impl Deserialize<'static> for Verified
impl Deserialize<'static> for Verified
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Verified
impl StructuralPartialEq for Verified
Auto Trait Implementations§
impl Freeze for Verified
impl RefUnwindSafe for Verified
impl Send for Verified
impl Sync for Verified
impl Unpin for Verified
impl UnsafeUnpin for Verified
impl UnwindSafe for Verified
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