[][src]Struct batbox::RealImpl

#[repr(transparent)]pub struct RealImpl<T: Float>(_);

Implementations

impl<T: Float> RealImpl<T>[src]

pub fn new(value: T) -> Self[src]

pub fn new_unchecked(value: T) -> Self[src]

pub fn raw(self) -> T[src]

impl<T: Float> RealImpl<T>[src]

pub const PI: Self[src]

pub fn signum(self) -> Self[src]

pub fn floor(self) -> Self[src]

pub fn ceil(self) -> Self[src]

pub fn sqrt(self) -> Self[src]

pub fn tan(self) -> Self[src]

pub fn sin(self) -> Self[src]

pub fn cos(self) -> Self[src]

pub fn sin_cos(self) -> (Self, Self)[src]

pub fn atan2(y: Self, x: Self) -> Self[src]

pub fn as_f32(self) -> f32[src]

Trait Implementations

impl<T: Float> Add<RealImpl<T>> for RealImpl<T>[src]

type Output = Self

The resulting type after applying the + operator.

impl<T: Float> AddAssign<RealImpl<T>> for RealImpl<T>[src]

impl<T: Clone + Float> Clone for RealImpl<T>[src]

impl<T: Copy + Float> Copy for RealImpl<T>[src]

impl<T: Float> Debug for RealImpl<T>[src]

impl<'de> Deserialize<'de> for RealImpl<f32>[src]

impl<'de> Deserialize<'de> for RealImpl<f64>[src]

impl<T: Float> Display for RealImpl<T>[src]

impl<T: Float> Div<RealImpl<T>> for RealImpl<T>[src]

type Output = Self

The resulting type after applying the / operator.

impl<T: Float> DivAssign<RealImpl<T>> for RealImpl<T>[src]

impl<T: Float> Eq for RealImpl<T>[src]

impl<T: Float> Mul<RealImpl<T>> for RealImpl<T>[src]

type Output = Self

The resulting type after applying the * operator.

impl<T: Float> MulAssign<RealImpl<T>> for RealImpl<T>[src]

impl<T: Float> Neg for RealImpl<T>[src]

type Output = Self

The resulting type after applying the - operator.

impl<T: Float> Ord for RealImpl<T>[src]

impl<T: PartialEq + Float> PartialEq<RealImpl<T>> for RealImpl<T>[src]

impl<T: PartialOrd + Float> PartialOrd<RealImpl<T>> for RealImpl<T>[src]

impl<T: Float> Real for RealImpl<T>[src]

impl<T: Float> Schematic for RealImpl<T> where
    T: Schematic + 'static, 
[src]

impl<T: Float> Serialize for RealImpl<T> where
    T: Serialize
[src]

impl<T: Float> StructuralPartialEq for RealImpl<T>[src]

impl<T: Float> Sub<RealImpl<T>> for RealImpl<T>[src]

type Output = Self

The resulting type after applying the - operator.

impl<T: Float> SubAssign<RealImpl<T>> for RealImpl<T>[src]

impl<T: Float + Trans> Trans for RealImpl<T>[src]

impl TryFrom<f32> for RealImpl<f32>[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<f64> for RealImpl<f64>[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl<T: Float> UNum for RealImpl<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for RealImpl<T> where
    T: RefUnwindSafe

impl<T> Send for RealImpl<T> where
    T: Send

impl<T> Sync for RealImpl<T> where
    T: Sync

impl<T> Unpin for RealImpl<T> where
    T: Unpin

impl<T> UnwindSafe for RealImpl<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,