Struct libp2p::multihash::typenum::consts::B0 [−][src]
The type-level bit 0.
Implementations
impl B0
[src]
Trait Implementations
impl Add<B0> for UTerm
[src]
UTerm + B0 = UTerm
type Output = UTerm
The resulting type after applying the +
operator.
pub fn add(self, B0) -> <UTerm as Add<B0>>::Output
[src]
impl<U, B> Add<B0> for UInt<U, B> where
B: Bit,
U: Unsigned,
[src]
B: Bit,
U: Unsigned,
U + B0 = U
type Output = UInt<U, B>
The resulting type after applying the +
operator.
pub fn add(self, B0) -> <UInt<U, B> as Add<B0>>::Output
[src]
impl Bit for B0
[src]
pub const U8: u8
[src]
pub const BOOL: bool
[src]
pub fn to_u8() -> u8
[src]
pub fn to_bool() -> bool
[src]
impl BitAnd<B0> for B1
[src]
And with 1 ( 1 & 0 = 0)
type Output = B0
The resulting type after applying the &
operator.
pub fn bitand(self, B0) -> <B1 as BitAnd<B0>>::Output
[src]
impl<Rhs> BitAnd<Rhs> for B0 where
Rhs: Bit,
[src]
Rhs: Bit,
And with 0 ( 0 & B = 0)
type Output = B0
The resulting type after applying the &
operator.
pub fn bitand(self, Rhs) -> <B0 as BitAnd<Rhs>>::Output
[src]
impl BitOr<B0> for B0
[src]
Or with 0 ( 0 | 0 = 0)
type Output = B0
The resulting type after applying the |
operator.
pub fn bitor(self, B0) -> <B0 as BitOr<B0>>::Output
[src]
impl BitOr<B1> for B0
[src]
Or with 0 ( 0 | 1 = 1)
type Output = B1
The resulting type after applying the |
operator.
pub fn bitor(self, B1) -> <B0 as BitOr<B1>>::Output
[src]
impl BitXor<B0> for B0
[src]
Xor between 0 and 0 ( 0 ^ 0 = 0)
type Output = B0
The resulting type after applying the ^
operator.
pub fn bitxor(self, B0) -> <B0 as BitXor<B0>>::Output
[src]
impl BitXor<B0> for B1
[src]
Xor between 1 and 0 ( 1 ^ 0 = 1)
type Output = B1
The resulting type after applying the ^
operator.
pub fn bitxor(self, B0) -> <B1 as BitXor<B0>>::Output
[src]
impl BitXor<B1> for B0
[src]
Xor between 0 and 1 ( 0 ^ 1 = 1)
type Output = B1
The resulting type after applying the ^
operator.
pub fn bitxor(self, B1) -> <B0 as BitXor<B1>>::Output
[src]
impl Clone for B0
[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
.
pub fn compare<P>(&self, &B0) -> <B1 as Cmp<B0>>::Output where
P: InternalMarker,
[src]
P: InternalMarker,
impl Cmp<B0> for B0
[src]
type Output = Equal
The result of the comparison. It should only ever be one of Greater
, Less
, or Equal
.
pub fn compare<P>(&self, &B0) -> <B0 as Cmp<B0>>::Output where
P: InternalMarker,
[src]
P: InternalMarker,
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
.
pub fn compare<P>(&self, &B1) -> <B0 as Cmp<B1>>::Output where
P: InternalMarker,
[src]
P: InternalMarker,
impl Copy for B0
[src]
impl Debug for B0
[src]
impl Default for B0
[src]
impl Eq for B0
[src]
impl Hash for B0
[src]
pub fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
[src]
__H: Hasher,
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Max<B0> for B1
[src]
impl Max<B0> for B0
[src]
impl Max<B1> for B0
[src]
impl Min<B0> for B0
[src]
impl Min<B0> for B1
[src]
impl Min<B1> for B0
[src]
impl<U, B> Mul<B0> for UInt<U, B> where
B: Bit,
U: Unsigned,
[src]
B: Bit,
U: Unsigned,
UInt * B0 = UTerm
type Output = UTerm
The resulting type after applying the *
operator.
pub fn mul(self, B0) -> <UInt<U, B> as Mul<B0>>::Output
[src]
impl Mul<B0> for UTerm
[src]
UTerm * B0 = UTerm
type Output = UTerm
The resulting type after applying the *
operator.
pub fn mul(self, B0) -> <UTerm as Mul<B0>>::Output
[src]
impl Not for B0
[src]
Not of 0 (!0 = 1)
type Output = B1
The resulting type after applying the !
operator.
pub fn not(self) -> <B0 as Not>::Output
[src]
impl Ord for B0
[src]
pub fn cmp(&self, other: &B0) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<B0> for B0
[src]
impl PartialOrd<B0> for B0
[src]
pub fn partial_cmp(&self, other: &B0) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Shl<B0> for UTerm
[src]
Shifting UTerm
by a 0 bit: UTerm << B0 = UTerm
type Output = UTerm
The resulting type after applying the <<
operator.
pub fn shl(self, B0) -> <UTerm as Shl<B0>>::Output
[src]
impl<U, B> Shl<B0> for UInt<U, B> where
B: Bit,
U: Unsigned,
[src]
B: Bit,
U: Unsigned,
Shifting left any unsigned by a zero bit: U << B0 = U
type Output = UInt<U, B>
The resulting type after applying the <<
operator.
pub fn shl(self, B0) -> <UInt<U, B> as Shl<B0>>::Output
[src]
impl<U, B> Shr<B0> for UInt<U, B> where
B: Bit,
U: Unsigned,
[src]
B: Bit,
U: Unsigned,
Shifting right any unsigned by a zero bit: U >> B0 = U
type Output = UInt<U, B>
The resulting type after applying the >>
operator.
pub fn shr(self, B0) -> <UInt<U, B> as Shr<B0>>::Output
[src]
impl Shr<B0> for UTerm
[src]
Shifting right UTerm
by a 0 bit: UTerm >> B0 = UTerm
type Output = UTerm
The resulting type after applying the >>
operator.
pub fn shr(self, B0) -> <UTerm as Shr<B0>>::Output
[src]
impl StructuralEq for B0
[src]
impl StructuralPartialEq for B0
[src]
impl Sub<B0> for UTerm
[src]
UTerm - B0 = Term
type Output = UTerm
The resulting type after applying the -
operator.
pub fn sub(self, B0) -> <UTerm as Sub<B0>>::Output
[src]
impl<U, B> Sub<B0> for UInt<U, B> where
B: Bit,
U: Unsigned,
[src]
B: Bit,
U: Unsigned,
UInt - B0 = UInt
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> CallHasher for T where
T: Hash,
[src]
T: Hash,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,