pub enum DetectedEntry {
Lid {
key: String,
value: String,
url: Option<String>,
},
CbId {
key: String,
value: String,
name: String,
},
}Expand description
One placeholder produced by templatization, with the metadata the
caller needs to update values/<env>.yaml.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DetectedEntry
impl Clone for DetectedEntry
Source§fn clone(&self) -> DetectedEntry
fn clone(&self) -> DetectedEntry
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 DetectedEntry
impl Debug for DetectedEntry
Source§impl PartialEq for DetectedEntry
impl PartialEq for DetectedEntry
Source§fn eq(&self, other: &DetectedEntry) -> bool
fn eq(&self, other: &DetectedEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DetectedEntry
impl StructuralPartialEq for DetectedEntry
Auto Trait Implementations§
impl Freeze for DetectedEntry
impl RefUnwindSafe for DetectedEntry
impl Send for DetectedEntry
impl Sync for DetectedEntry
impl Unpin for DetectedEntry
impl UnsafeUnpin for DetectedEntry
impl UnwindSafe for DetectedEntry
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
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.