pub enum FixedPointValue {
I32(i32),
I64(i64),
}
Expand description
Fixed-Point representation. only supports 32 bit and 64 bit values according to the spec 128 bit are possible but we don’t support it
Variants§
Trait Implementations§
Source§impl Clone for FixedPointValue
impl Clone for FixedPointValue
Source§fn clone(&self) -> FixedPointValue
fn clone(&self) -> FixedPointValue
Returns a copy 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 FixedPointValue
impl Debug for FixedPointValue
Source§impl PartialEq for FixedPointValue
impl PartialEq for FixedPointValue
impl StructuralPartialEq for FixedPointValue
Auto Trait Implementations§
impl Freeze for FixedPointValue
impl RefUnwindSafe for FixedPointValue
impl Send for FixedPointValue
impl Sync for FixedPointValue
impl Unpin for FixedPointValue
impl UnwindSafe for FixedPointValue
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