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