#[non_exhaustive]pub enum RoundingMode {
Ceil = 0,
Floor = 1,
Expand = 2,
Trunc = 3,
HalfCeil = 4,
HalfFloor = 5,
HalfExpand = 6,
HalfTrunc = 7,
HalfEven = 8,
}Expand description
Rounding mode for Intl.NumberFormat.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Ceil = 0
Floor = 1
Expand = 2
Trunc = 3
HalfCeil = 4
HalfFloor = 5
HalfExpand = 6
HalfTrunc = 7
HalfEven = 8
Implementations§
Source§impl RoundingMode
impl RoundingMode
pub fn from_js_value(obj: &JsValue) -> Option<RoundingMode>
Trait Implementations§
Source§impl Clone for RoundingMode
impl Clone for RoundingMode
Source§fn clone(&self) -> RoundingMode
fn clone(&self) -> RoundingMode
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 RoundingMode
impl Debug for RoundingMode
Source§impl From<RoundingMode> for JsValue
impl From<RoundingMode> for JsValue
Source§fn from(val: RoundingMode) -> Self
fn from(val: RoundingMode) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for RoundingMode
impl FromWasmAbi for RoundingMode
Source§impl IntoWasmAbi for RoundingMode
impl IntoWasmAbi for RoundingMode
Source§impl OptionFromWasmAbi for RoundingMode
impl OptionFromWasmAbi for RoundingMode
Source§impl OptionIntoWasmAbi for RoundingMode
impl OptionIntoWasmAbi for RoundingMode
Source§impl PartialEq for RoundingMode
impl PartialEq for RoundingMode
impl Copy for RoundingMode
impl Eq for RoundingMode
impl StructuralPartialEq for RoundingMode
Auto Trait Implementations§
impl Freeze for RoundingMode
impl RefUnwindSafe for RoundingMode
impl Send for RoundingMode
impl Sync for RoundingMode
impl Unpin for RoundingMode
impl UnsafeUnpin for RoundingMode
impl UnwindSafe for RoundingMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.