pub enum KnownEntry {
Full(FullSupport),
Partial(PartialSupport),
Unsupported(Unsupported),
Unknown(UnknownSupport),
}Expand description
Classification of a known (non-ignored) config key.
Variants§
Full(FullSupport)
ADP reads and fully supports this key; behavior matches the core Agent.
Partial(PartialSupport)
ADP reads this key but behavior diverges from the core Agent in some cases.
Unsupported(Unsupported)
ADP does not support this key.
Unknown(UnknownSupport)
ADP’s compatibility with this key has not yet been determined.
Trait Implementations§
Source§impl Clone for KnownEntry
impl Clone for KnownEntry
Source§fn clone(&self) -> KnownEntry
fn clone(&self) -> KnownEntry
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 KnownEntry
impl Debug for KnownEntry
Source§impl<'de> Deserialize<'de> for KnownEntry
impl<'de> Deserialize<'de> for KnownEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for KnownEntry
impl RefUnwindSafe for KnownEntry
impl Send for KnownEntry
impl Sync for KnownEntry
impl Unpin for KnownEntry
impl UnsafeUnpin for KnownEntry
impl UnwindSafe for KnownEntry
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