[][src]Struct geng_core::prelude::RealImpl

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

Implementations

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

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

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

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

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

pub const PI: RealImpl<T>[src]

pub fn signum(self) -> RealImpl<T>[src]

pub fn floor(self) -> RealImpl<T>[src]

pub fn ceil(self) -> RealImpl<T>[src]

pub fn sqrt(self) -> RealImpl<T>[src]

pub fn tan(self) -> RealImpl<T>[src]

pub fn sin(self) -> RealImpl<T>[src]

pub fn cos(self) -> RealImpl<T>[src]

pub fn sin_cos(self) -> (RealImpl<T>, RealImpl<T>)[src]

pub fn atan2(y: RealImpl<T>, x: RealImpl<T>) -> RealImpl<T>[src]

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

Trait Implementations

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

type Output = RealImpl<T>

The resulting type after applying the + operator.

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

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

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

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

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

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

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

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

type Output = RealImpl<T>

The resulting type after applying the / operator.

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

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

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

type Output = RealImpl<T>

The resulting type after applying the * operator.

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

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

type Output = RealImpl<T>

The resulting type after applying the - operator.

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

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

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

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

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

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

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

type Output = RealImpl<T>

The resulting type after applying the - operator.

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

impl<T> Trans for RealImpl<T> where
    T: Float + Trans
[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> UNum for RealImpl<T> where
    T: Float
[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> ApproxEq for T where
    T: Float
[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> Float for T where
    T: Real
[src]

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

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

impl<T> Num for T where
    T: UNum + Neg<Output = T>, 
[src]

impl<T> SetParameter for T

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>,