Struct IfChainEntry
struct IfChainEntry<'a> {
comparison: Comparison<'a>,
keep_value: bool,
value: Option<Value<Cow<'a, str>>>,
}Fields§
§comparison: Comparison<'a>§keep_value: bool§value: Option<Value<Cow<'a, str>>>Implementations§
§impl IfChainEntry<'_>
impl IfChainEntry<'_>
fn build(self, legend: &mut Legend) -> Result<IfChainEntry>
Trait Implementations§
§impl<'a> Clone for IfChainEntry<'a>
impl<'a> Clone for IfChainEntry<'a>
§fn clone(&self) -> IfChainEntry<'a>
fn clone(&self) -> IfChainEntry<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl<'de: 'a, 'a> Deserialize<'de> for IfChainEntry<'a>
impl<'de: 'a, 'a> Deserialize<'de> for IfChainEntry<'a>
§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<'a> Freeze for IfChainEntry<'a>
impl<'a> RefUnwindSafe for IfChainEntry<'a>
impl<'a> Send for IfChainEntry<'a>
impl<'a> Sync for IfChainEntry<'a>
impl<'a> Unpin for IfChainEntry<'a>
impl<'a> UnwindSafe for IfChainEntry<'a>
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