pub enum FilterOrIfDef {
Filter(Filter),
Ifdef {
param: ParamDeclaration,
filter: Filter,
},
}Expand description
Ifdef conditionally filters the series
Variants§
Trait Implementations§
Source§impl Clone for FilterOrIfDef
impl Clone for FilterOrIfDef
Source§fn clone(&self) -> FilterOrIfDef
fn clone(&self) -> FilterOrIfDef
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 FilterOrIfDef
impl Debug for FilterOrIfDef
Source§impl<'de> Deserialize<'de> for FilterOrIfDef
impl<'de> Deserialize<'de> for FilterOrIfDef
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
Source§impl PartialEq for FilterOrIfDef
impl PartialEq for FilterOrIfDef
Source§fn eq(&self, other: &FilterOrIfDef) -> bool
fn eq(&self, other: &FilterOrIfDef) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FilterOrIfDef
impl Serialize for FilterOrIfDef
impl StructuralPartialEq for FilterOrIfDef
Auto Trait Implementations§
impl Freeze for FilterOrIfDef
impl RefUnwindSafe for FilterOrIfDef
impl Send for FilterOrIfDef
impl Sync for FilterOrIfDef
impl Unpin for FilterOrIfDef
impl UnsafeUnpin for FilterOrIfDef
impl UnwindSafe for FilterOrIfDef
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