pub enum BracketsLevel {
None,
ForMul,
ForDiv,
ForOperation,
}
Variants§
Trait Implementations§
source§impl Clone for BracketsLevel
impl Clone for BracketsLevel
source§fn clone(&self) -> BracketsLevel
fn clone(&self) -> BracketsLevel
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BracketsLevel
impl Debug for BracketsLevel
source§impl PartialEq<BracketsLevel> for BracketsLevel
impl PartialEq<BracketsLevel> for BracketsLevel
source§fn eq(&self, other: &BracketsLevel) -> bool
fn eq(&self, other: &BracketsLevel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for BracketsLevel
impl Eq for BracketsLevel
impl StructuralEq for BracketsLevel
impl StructuralPartialEq for BracketsLevel
Auto Trait Implementations§
impl RefUnwindSafe for BracketsLevel
impl Send for BracketsLevel
impl Sync for BracketsLevel
impl Unpin for BracketsLevel
impl UnwindSafe for BracketsLevel
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