pub enum Conn {
And,
Or,
}Expand description
How the literals in a WHEN/THEN group combine. A single-literal group is
always Conn::And (the connective is irrelevant with one literal).
Variants§
And
Continuation lines used AND — all literals must hold.
Or
Continuation lines used OR — at least one literal must hold.
Trait Implementations§
impl Copy for Conn
impl Eq for Conn
impl StructuralPartialEq for Conn
Auto Trait Implementations§
impl Freeze for Conn
impl RefUnwindSafe for Conn
impl Send for Conn
impl Sync for Conn
impl Unpin for Conn
impl UnsafeUnpin for Conn
impl UnwindSafe for Conn
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