pub enum ValueOrLogical {
Value(Term),
Logical(Term),
Either(Term),
}
Expand description
Used to denote whether an enclosed value is a value or a logical operator
Variants§
Auto Trait Implementations§
impl Freeze for ValueOrLogical
impl RefUnwindSafe for ValueOrLogical
impl Send for ValueOrLogical
impl Sync for ValueOrLogical
impl Unpin for ValueOrLogical
impl UnwindSafe for ValueOrLogical
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