#[repr(u8)]pub enum FUnaryOp {
Frsqrt = 0,
Frcp = 1,
Ffloor = 2,
Fceil = 3,
Fround = 4,
Ftrunc = 5,
Ffract = 6,
Fsat = 7,
Fsin = 8,
Fcos = 9,
Fexp2 = 10,
Flog2 = 11,
}Variants§
Frsqrt = 0
Frcp = 1
Ffloor = 2
Fceil = 3
Fround = 4
Ftrunc = 5
Ffract = 6
Fsat = 7
Fsin = 8
Fcos = 9
Fexp2 = 10
Flog2 = 11
Implementations§
Trait Implementations§
impl Copy for FUnaryOp
impl Eq for FUnaryOp
impl StructuralPartialEq for FUnaryOp
Auto Trait Implementations§
impl Freeze for FUnaryOp
impl RefUnwindSafe for FUnaryOp
impl Send for FUnaryOp
impl Sync for FUnaryOp
impl Unpin for FUnaryOp
impl UnsafeUnpin for FUnaryOp
impl UnwindSafe for FUnaryOp
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