pub struct SafeConfigKey {
pub scope: Vec<String>,
pub name: String,
pub line: usize,
pub sensitive_kind: Option<SensitiveKeyKind>,
}Expand description
One configuration key observation containing no configuration value.
Fields§
§scope: Vec<String>Parent key path, ordered from the document root to the immediate parent.
name: StringUnqualified key name.
line: usizeOne-based source line where the key is declared.
sensitive_kind: Option<SensitiveKeyKind>Sensitive-name classification, when applicable.
Trait Implementations§
Source§impl Clone for SafeConfigKey
impl Clone for SafeConfigKey
Source§fn clone(&self) -> SafeConfigKey
fn clone(&self) -> SafeConfigKey
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 SafeConfigKey
impl Debug for SafeConfigKey
Source§impl<'de> Deserialize<'de> for SafeConfigKey
impl<'de> Deserialize<'de> for SafeConfigKey
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
impl Eq for SafeConfigKey
Source§impl Hash for SafeConfigKey
impl Hash for SafeConfigKey
Source§impl Ord for SafeConfigKey
impl Ord for SafeConfigKey
Source§fn cmp(&self, other: &SafeConfigKey) -> Ordering
fn cmp(&self, other: &SafeConfigKey) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SafeConfigKey
impl PartialEq for SafeConfigKey
Source§impl PartialOrd for SafeConfigKey
impl PartialOrd for SafeConfigKey
Source§impl Serialize for SafeConfigKey
impl Serialize for SafeConfigKey
impl StructuralPartialEq for SafeConfigKey
Auto Trait Implementations§
impl Freeze for SafeConfigKey
impl RefUnwindSafe for SafeConfigKey
impl Send for SafeConfigKey
impl Sync for SafeConfigKey
impl Unpin for SafeConfigKey
impl UnsafeUnpin for SafeConfigKey
impl UnwindSafe for SafeConfigKey
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.