pub enum AmountSign {
None,
Negative,
Always,
}Expand description
Defines how to display the sign of the parsed number.
Variants§
None
Omit the sign entirely.
Negative
Display only the negative sign.
Always
Always display the sign (+ or -).
Auto Trait Implementations§
impl Freeze for AmountSign
impl RefUnwindSafe for AmountSign
impl Send for AmountSign
impl Sync for AmountSign
impl Unpin for AmountSign
impl UnsafeUnpin for AmountSign
impl UnwindSafe for AmountSign
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