pub enum BooleanOp<'a> {
And {
whitespace_before: ParenthesizableWhitespace<'a>,
whitespace_after: ParenthesizableWhitespace<'a>,
},
Or {
whitespace_before: ParenthesizableWhitespace<'a>,
whitespace_after: ParenthesizableWhitespace<'a>,
},
}
Variants§
And
Fields
§
whitespace_before: ParenthesizableWhitespace<'a>
§
whitespace_after: ParenthesizableWhitespace<'a>
Or
Fields
§
whitespace_before: ParenthesizableWhitespace<'a>
§
whitespace_after: ParenthesizableWhitespace<'a>
Trait Implementations§
impl<'a> Eq for BooleanOp<'a>
impl<'a> StructuralPartialEq for BooleanOp<'a>
Auto Trait Implementations§
impl<'a> Freeze for BooleanOp<'a>
impl<'a> RefUnwindSafe for BooleanOp<'a>
impl<'a> Send for BooleanOp<'a>
impl<'a> Sync for BooleanOp<'a>
impl<'a> Unpin for BooleanOp<'a>
impl<'a> UnwindSafe for BooleanOp<'a>
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