pub enum Sign {
Minus,
MinusPlus,
}
🔬This is a nightly-only experimental API. (
flt2dec
)Expand description
Sign formatting options.
Variants§
Minus
🔬This is a nightly-only experimental API. (
flt2dec
)Prints -
for any negative value.
MinusPlus
🔬This is a nightly-only experimental API. (
flt2dec
)Prints -
for any negative value, or +
otherwise.
Trait Implementations§
source§impl PartialEq<Sign> for Sign
impl PartialEq<Sign> for Sign
impl Copy for Sign
impl StructuralEq for Sign
impl StructuralPartialEq for Sign
Auto Trait Implementations§
impl Freeze for Sign
impl RefUnwindSafe for Sign
impl Send for Sign
impl Sync for Sign
impl Unpin for Sign
impl UnwindSafe for Sign
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