pub enum RegistryStatus {
Supported,
FirmwareNewerThanKnown,
UnknownModel,
}Expand description
How well the registry matched a (model, firmware) query.
Variants§
Supported
Model and firmware fall within known, supported territory.
FirmwareNewerThanKnown
Model is known but firmware is newer than anything we have data for.
UnknownModel
Model is not in the registry.
Trait Implementations§
Source§impl Clone for RegistryStatus
impl Clone for RegistryStatus
Source§fn clone(&self) -> RegistryStatus
fn clone(&self) -> RegistryStatus
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 moreimpl Copy for RegistryStatus
Source§impl Debug for RegistryStatus
impl Debug for RegistryStatus
impl Eq for RegistryStatus
Source§impl PartialEq for RegistryStatus
impl PartialEq for RegistryStatus
Source§fn eq(&self, other: &RegistryStatus) -> bool
fn eq(&self, other: &RegistryStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RegistryStatus
Auto Trait Implementations§
impl Freeze for RegistryStatus
impl RefUnwindSafe for RegistryStatus
impl Send for RegistryStatus
impl Sync for RegistryStatus
impl Unpin for RegistryStatus
impl UnsafeUnpin for RegistryStatus
impl UnwindSafe for RegistryStatus
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.