#[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
Sourcepub fn from_str(s: &str) -> Option<RoundingMode>
pub fn from_str(s: &str) -> Option<RoundingMode>
Convert a string to this enum variant.
Sourcepub fn from_js_value(obj: &JsValue) -> Option<RoundingMode>
pub fn from_js_value(obj: &JsValue) -> Option<RoundingMode>
Convert a JsValue (if it’s a string) to this enum variant.
Trait Implementations§
Source§impl BatchableResult for RoundingMode
impl BatchableResult for RoundingMode
Source§impl BinaryDecode for RoundingMode
impl BinaryDecode for RoundingMode
fn decode(decoder: &mut DecodedData<'_>) -> Result<Self, DecodeError>
Source§impl BinaryEncode for RoundingMode
impl BinaryEncode for RoundingMode
fn encode(self, encoder: &mut EncodedData)
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 (const: unstable) · 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 EncodeTypeDef for RoundingMode
impl EncodeTypeDef for RoundingMode
Source§fn encode_type_def(buf: &mut Vec<u8>)
fn encode_type_def(buf: &mut Vec<u8>)
Encode this type’s definition into the buffer.
For primitives, this is just the TypeTag byte.
For callbacks, this includes param count, param types, and return type.
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 PartialEq for RoundingMode
impl PartialEq for RoundingMode
Source§fn eq(&self, other: &RoundingMode) -> bool
fn eq(&self, other: &RoundingMode) -> bool
Tests for
self and other values to be equal, and is used by ==.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