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 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