pub struct AndGroup {
pub clauses: Vec<Clause>,
}Expand description
A conjunction of one or more clauses, joined by AND.
clauses is guaranteed by the parser to be non-empty.
Fields§
§clauses: Vec<Clause>Trait Implementations§
impl StructuralPartialEq for AndGroup
Auto Trait Implementations§
impl Freeze for AndGroup
impl RefUnwindSafe for AndGroup
impl Send for AndGroup
impl Sync for AndGroup
impl Unpin for AndGroup
impl UnsafeUnpin for AndGroup
impl UnwindSafe for AndGroup
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