pub enum SaturatingFloatToIntOperator {
I32TruncSatF32S,
I32TruncSatF32U,
I32TruncSatF64S,
I32TruncSatF64U,
I64TruncSatF32S,
I64TruncSatF32U,
I64TruncSatF64S,
I64TruncSatF64U,
}Expand description
A subset of WebAssembly operations given by the SaturatingFloatToInt proposal
Variants§
I32TruncSatF32S
I32TruncSatF32U
I32TruncSatF64S
I32TruncSatF64U
I64TruncSatF32S
I64TruncSatF32U
I64TruncSatF64S
I64TruncSatF64U
Implementations§
Trait Implementations§
source§impl Clone for SaturatingFloatToIntOperator
impl Clone for SaturatingFloatToIntOperator
source§fn clone(&self) -> SaturatingFloatToIntOperator
fn clone(&self) -> SaturatingFloatToIntOperator
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 SaturatingFloatToIntOperator
impl Debug for SaturatingFloatToIntOperator
source§impl<'a> From<SaturatingFloatToIntOperator> for Operator<'a>
impl<'a> From<SaturatingFloatToIntOperator> for Operator<'a>
source§fn from(op: SaturatingFloatToIntOperator) -> Self
fn from(op: SaturatingFloatToIntOperator) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for SaturatingFloatToIntOperator
impl Send for SaturatingFloatToIntOperator
impl Sync for SaturatingFloatToIntOperator
impl Unpin for SaturatingFloatToIntOperator
impl UnwindSafe for SaturatingFloatToIntOperator
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