pub enum ParenType {
OPEN,
CLOSE,
}Expand description
A parenthesis type.
‘(’ is OPEN and ‘)’ is CLOSE
Variants§
Trait Implementations§
impl StructuralPartialEq for ParenType
Auto Trait Implementations§
impl Freeze for ParenType
impl RefUnwindSafe for ParenType
impl Send for ParenType
impl Sync for ParenType
impl Unpin for ParenType
impl UnwindSafe for ParenType
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