Struct sc_network::multiaddr::multihash::typenum::B1[][src]

pub struct B1;
[]

The type-level bit 1.

Implementations

impl B1[src]

pub fn new() -> B1[src][]

Instantiates a singleton representing this bit.

Trait Implementations

impl Add<B1> for UTerm[src]

UTerm + B1 = UInt<UTerm, B1>

type Output = UInt<UTerm, B1>

The resulting type after applying the + operator.

impl<U> Add<B1> for UInt<U, B1> where
    U: Unsigned + Add<B1>,
    <U as Add<B1>>::Output: Unsigned
[src]

UInt<U, B1> + B1 = UInt<U + B1, B0>

type Output = UInt<<U as Add<B1>>::Output, B0>

The resulting type after applying the + operator.

impl<U> Add<B1> for UInt<U, B0> where
    U: Unsigned
[src]

UInt<U, B0> + B1 = UInt<U + B1>

type Output = UInt<U, B1>

The resulting type after applying the + operator.

impl Bit for B1[src]

impl BitAnd<B0> for B1[src]

And with 1 ( 1 & 0 = 0)

type Output = B0

The resulting type after applying the & operator.

impl BitAnd<B1> for B1[src]

And with 1 ( 1 & 1 = 1)

type Output = B1

The resulting type after applying the & operator.

impl BitOr<B1> for B0[src]

Or with 0 ( 0 | 1 = 1)

type Output = B1

The resulting type after applying the | operator.

impl<Rhs> BitOr<Rhs> for B1 where
    Rhs: Bit
[src]

Or with 1 ( 1 | B = 1)

type Output = B1

The resulting type after applying the | operator.

impl BitXor<B0> for B1[src]

Xor between 1 and 0 ( 1 ^ 0 = 1)

type Output = B1

The resulting type after applying the ^ operator.

impl BitXor<B1> for B1[src]

Xor between 1 and 1 ( 1 ^ 1 = 0)

type Output = B0

The resulting type after applying the ^ operator.

impl BitXor<B1> for B0[src]

Xor between 0 and 1 ( 0 ^ 1 = 1)

type Output = B1

The resulting type after applying the ^ operator.

impl Clone for B1[src]

impl Cmp<B0> for B1[src]

type Output = Greater

The result of the comparison. It should only ever be one of Greater, Less, or Equal.

impl Cmp<B1> for B1[src]

type Output = Equal

The result of the comparison. It should only ever be one of Greater, Less, or Equal.

impl Cmp<B1> for B0[src]

type Output = Less

The result of the comparison. It should only ever be one of Greater, Less, or Equal.

impl Debug for B1[src]

impl Default for B1[src]

impl Hash for B1[src]

impl Max<B0> for B1[src]

type Output = B1

The type of the maximum of Self and Rhs

impl Max<B1> for B1[src]

type Output = B1

The type of the maximum of Self and Rhs

impl Max<B1> for B0[src]

type Output = B1

The type of the maximum of Self and Rhs

impl Min<B0> for B1[src]

type Output = B0

The type of the minimum of Self and Rhs

impl Min<B1> for B0[src]

type Output = B0

The type of the minimum of Self and Rhs

impl Min<B1> for B1[src]

type Output = B1

The type of the minimum of Self and Rhs

impl Mul<B1> for UTerm[src]

UTerm * B1 = UTerm

type Output = UTerm

The resulting type after applying the * operator.

impl<U, B> Mul<B1> for UInt<U, B> where
    B: Bit,
    U: Unsigned
[src]

UInt * B1 = UInt

type Output = UInt<U, B>

The resulting type after applying the * operator.

impl Not for B1[src]

Not of 1 (!1 = 0)

type Output = B0

The resulting type after applying the ! operator.

impl Ord for B1[src]

impl PartialEq<B1> for B1[src]

impl PartialOrd<B1> for B1[src]

impl Shl<B1> for UTerm[src]

Shifting UTerm by a 1 bit: UTerm << B1 = UTerm

type Output = UTerm

The resulting type after applying the << operator.

impl<U, B> Shl<B1> for UInt<U, B> where
    B: Bit,
    U: Unsigned
[src]

Shifting left a UInt by a one bit: UInt<U, B> << B1 = UInt<UInt<U, B>, B0>

type Output = UInt<UInt<U, B>, B0>

The resulting type after applying the << operator.

impl<U, B> Shr<B1> for UInt<U, B> where
    B: Bit,
    U: Unsigned
[src]

Shifting right a UInt by a 1 bit: UInt<U, B> >> B1 = U

type Output = U

The resulting type after applying the >> operator.

impl Shr<B1> for UTerm[src]

Shifting right UTerm by a 1 bit: UTerm >> B1 = UTerm

type Output = UTerm

The resulting type after applying the >> operator.

impl<U, B> Sub<B1> for UInt<UInt<U, B>, B1> where
    B: Bit,
    U: Unsigned
[src]

UInt<U, B1> - B1 = UInt<U, B0>

type Output = UInt<UInt<U, B>, B0>

The resulting type after applying the - operator.

impl Sub<B1> for UInt<UTerm, B1>[src]

UInt<UTerm, B1> - B1 = UTerm

type Output = UTerm

The resulting type after applying the - operator.

impl<U> Sub<B1> for UInt<U, B0> where
    U: Unsigned + Sub<B1>,
    <U as Sub<B1>>::Output: Unsigned
[src]

UInt<U, B0> - B1 = UInt<U - B1, B1>

type Output = UInt<<U as Sub<B1>>::Output, B1>

The resulting type after applying the - operator.

impl Copy for B1[src]

impl Eq for B1[src]

impl NonZero for B1[src]

impl PowerOfTwo for B1[src]

impl StructuralEq for B1[src]

impl StructuralPartialEq for B1[src]

Auto Trait Implementations

impl RefUnwindSafe for B1

impl Send for B1

impl Sync for B1

impl Unpin for B1

impl UnwindSafe for B1

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> CallHasher for T where
    T: Hash
[src]

impl<T> CheckedConversion for T[src]

impl<T> Clear for T where
    T: Default + Eq + PartialEq<T>, 
[src]

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src][]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src][]

Get a mutable reference to the inner from the outer.

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

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

type Output = T

Should always be Self

impl<T> SaturatedConversion for 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<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]

impl<T> ExHashT for T where
    T: Hash + Eq + Debug + Clone + Send + Sync + 'static, 
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeHash for T where
    T: Hash
[src]

impl<T> MaybeHash for T where
    T: Hash
[src]

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe
[src]

impl<T> Member for T where
    T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone
[src]