[][src]Struct langis::comp::Sub

pub struct Sub<L, R> { /* fields omitted */ }

Trait Implementations

impl<L: Clone, R: Clone> Clone for Sub<L, R>[src]

impl<L, R> Signal for Sub<L, R> where
    L: Signal,
    R: Signal,
    L::Type: Sub<R::Type>, 
[src]

type Type = <L::Type as Sub<R::Type>>::Output

The type of the signal.

Auto Trait Implementations

impl<L, R> RefUnwindSafe for Sub<L, R> where
    L: RefUnwindSafe,
    R: RefUnwindSafe

impl<L, R> Send for Sub<L, R> where
    L: Send,
    R: Send

impl<L, R> Sync for Sub<L, R> where
    L: Sync,
    R: Sync

impl<L, R> Unpin for Sub<L, R> where
    L: Unpin,
    R: Unpin

impl<L, R> UnwindSafe for Sub<L, R> where
    L: UnwindSafe,
    R: 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, 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>,