pub enum OrExpression {
Term(AndExpression),
Expression(Vec<AndExpression>),
}Variants§
Term(AndExpression)
Expression(Vec<AndExpression>)
Trait Implementations§
Source§impl Clone for OrExpression
impl Clone for OrExpression
Source§fn clone(&self) -> OrExpression
fn clone(&self) -> OrExpression
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 moreSource§impl Debug for OrExpression
impl Debug for OrExpression
Source§impl<'de> Deserialize<'de> for OrExpression
impl<'de> Deserialize<'de> for OrExpression
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 Display for OrExpression
Available on crate feature display only.
impl Display for OrExpression
Available on crate feature
display only.Source§impl Hash for OrExpression
impl Hash for OrExpression
Source§impl PartialEq for OrExpression
impl PartialEq for OrExpression
Source§impl Serialize for OrExpression
impl Serialize for OrExpression
impl StructuralPartialEq for OrExpression
Auto Trait Implementations§
impl Freeze for OrExpression
impl RefUnwindSafe for OrExpression
impl Send for OrExpression
impl Sync for OrExpression
impl Unpin for OrExpression
impl UnsafeUnpin for OrExpression
impl UnwindSafe for OrExpression
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