[][src]Struct prisma::channel::free_channel::FreeChannel

#[repr(transparent)]pub struct FreeChannel<T>(pub T);

A free channel with no constraints

Trait Implementations

impl<T> AbsDiffEq<FreeChannel<T>> for FreeChannel<T> where
    T: FreeChannelScalar + AbsDiffEq
[src]

type Epsilon = T::Epsilon

Used for specifying relative comparisons.

impl<T> Bounded for FreeChannel<T> where
    T: FreeChannelScalar
[src]

impl<T> ChannelCast for FreeChannel<T> where
    T: FreeChannelScalar
[src]

impl<T: Clone> Clone for FreeChannel<T>[src]

impl<T> ColorChannel for FreeChannel<T> where
    T: FreeChannelScalar
[src]

type Format = T

The contained type representing the channel. Format can be a wrapper around a scalar, such as an Angle<f32>, or a scalar itself. Read more

type Scalar = T

The scalar type used by the channel. This will be the scalar inside of a wrapper type.

type Tag = FreeChannelTag

A unique identifying tag type used in generic contexts

impl<T: Copy> Copy for FreeChannel<T>[src]

impl<T: Debug> Debug for FreeChannel<T>[src]

impl<T> Default for FreeChannel<T> where
    T: FreeChannelScalar + Default
[src]

impl<T> Display for FreeChannel<T> where
    T: FreeChannelScalar + Display
[src]

impl<T> Lerp for FreeChannel<T> where
    T: FreeChannelScalar + Lerp
[src]

type Position = <T as Lerp>::Position

The type of the pos argument

impl<T: PartialEq> PartialEq<FreeChannel<T>> for FreeChannel<T>[src]

impl<T: PartialOrd> PartialOrd<FreeChannel<T>> for FreeChannel<T>[src]

impl<T> RelativeEq<FreeChannel<T>> for FreeChannel<T> where
    T: FreeChannelScalar + RelativeEq
[src]

impl<T> StructuralPartialEq for FreeChannel<T>[src]

impl<T> UlpsEq<FreeChannel<T>> for FreeChannel<T> where
    T: FreeChannelScalar + UlpsEq
[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for FreeChannel<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> 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.