pub enum NegativeNumberMode {
Mode0,
Mode1,
Mode2,
Mode3,
Mode4,
}
Variants§
Mode0
Left parenthesis, number, right parenthesis; for example, (1.1)
Mode1
Negative sign, number; for example, -1.1
Mode2
Negative sign, space, number; for example, - 1.1
Mode3
Number, negative sign; for example, 1.1-
Mode4
Number, space, negative sign; for example, 1.1 -
Trait Implementations§
Source§impl Clone for NegativeNumberMode
impl Clone for NegativeNumberMode
Source§fn clone(&self) -> NegativeNumberMode
fn clone(&self) -> NegativeNumberMode
Returns a duplicate 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 NegativeNumberMode
impl Debug for NegativeNumberMode
impl Copy for NegativeNumberMode
Auto Trait Implementations§
impl Freeze for NegativeNumberMode
impl RefUnwindSafe for NegativeNumberMode
impl Send for NegativeNumberMode
impl Sync for NegativeNumberMode
impl Unpin for NegativeNumberMode
impl UnwindSafe for NegativeNumberMode
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