[][src]Struct boundnum::expr::Shl

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

Represents core::ops::Shl

Trait Implementations

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

impl<L: Copy, R: Copy> Copy for Shl<L, R>[src]

impl<L: Debug, R: Debug> Debug for Shl<L, R>[src]

impl<L: Default, R: Default> Default for Shl<L, R>[src]

impl<A, L, R> TypeExpr<A> for Shl<L, R> where
    L: TypeExpr<A>,
    R: TypeExpr<A>,
    Call<L, A>: TypeOperator<Call<R, A>>, 
[src]

type Output = <Call<L, A> as TypeOperator<Call<R, A>>>::Output

impl<A, L, R> ValueExpr<A> for Shl<L, R> where
    A: Copy,
    L: ValueExpr<A>,
    R: ValueExpr<A>,
    ValType<L, A>: ValTrait<ValType<R, A>>, 
[src]

type Output = <ValType<L, A> as ValTrait<ValType<R, A>>>::Output

Auto Trait Implementations

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

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

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

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

impl<L, R> UnwindSafe for Shl<L, R> where
    L: UnwindSafe,
    R: UnwindSafe

Blanket Implementations

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

impl<O, T> AsBound<T> for O where
    O: ValueExpr<T, Output = bool>, 
[src]

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

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

impl<T, B> Boundable<B> for T where
    B: AsBound<T> + Default,
    T: Copy
[src]

type Raw = T

type Bound = B

fn bound(
    Self
) -> Option<Bounded<<T as Boundable<B>>::Raw, <T as Boundable<B>>::Bound>>
[src]

Try to bound a value.

impl<A, T> Contains<A> for T where
    T: TypeExpr<A>,
    <T as TypeExpr<A>>::Output: Bit
[src]

type Output = <T as TypeExpr<A>>::Output

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

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

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

type Output = T

Should always be Self

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.