Struct typenum::bit::B1 [−][src]
The type-level bit 1.
Implementations
impl B1
[src]
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.
fn add(self, _: B1) -> Self::Output
[src]
impl<U: Unsigned> Add<B1> for UInt<U, B0>
[src]
UInt<U, B0> + B1 = UInt<U + B1>
type Output = UInt<U, B1>
The resulting type after applying the +
operator.
fn add(self, _: B1) -> Self::Output
[src]
impl<U: Unsigned> Add<B1> for UInt<U, B1> where
U: Add<B1>,
Add1<U>: Unsigned,
[src]
U: Add<B1>,
Add1<U>: Unsigned,
UInt<U, B1> + B1 = UInt<U + B1, B0>
type Output = UInt<Add1<U>, B0>
The resulting type after applying the +
operator.
fn add(self, _: B1) -> Self::Output
[src]
impl Bit for B1
[src]
const U8: u8
[src]
const BOOL: bool
[src]
fn new() -> Self
[src]
fn to_u8() -> u8
[src]
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.
fn bitand(self, _: B0) -> Self::Output
[src]
impl BitAnd<B1> for B1
[src]
And with 1 ( 1 & 1 = 1)
type Output = B1
The resulting type after applying the &
operator.
fn bitand(self, _: B1) -> Self::Output
[src]
impl BitOr<B1> for B0
[src]
Or with 0 ( 0 | 1 = 1)
type Output = B1
The resulting type after applying the |
operator.
fn bitor(self, _: B1) -> Self::Output
[src]
impl<Rhs: Bit> BitOr<Rhs> for B1
[src]
Or with 1 ( 1 | B = 1)
type Output = B1
The resulting type after applying the |
operator.
fn bitor(self, _: Rhs) -> Self::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.
fn bitxor(self, _: B0) -> Self::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.
fn bitxor(self, _: B1) -> Self::Output
[src]
impl BitXor<B1> for B1
[src]
Xor between 1 and 1 ( 1 ^ 1 = 0)
type Output = B0
The resulting type after applying the ^
operator.
fn bitxor(self, _: B1) -> Self::Output
[src]
impl Clone for B1
[src]
fn clone(&self) -> B1
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[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
.
fn compare<P: InternalMarker>(&self, _: &B0) -> Self::Output
[src]
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
.
fn compare<P: InternalMarker>(&self, _: &B1) -> Self::Output
[src]
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
.
fn compare<P: InternalMarker>(&self, _: &B1) -> Self::Output
[src]
impl Copy for B1
[src]
impl Debug for B1
[src]
impl Default for B1
[src]
impl Eq for B1
[src]
impl Hash for B1
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
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<B1> for B0
[src]
impl Max<B1> for B1
[src]
impl Min<B0> for B1
[src]
impl Min<B1> for B0
[src]
impl Min<B1> for B1
[src]
impl Mul<B1> for UTerm
[src]
UTerm * B1 = UTerm
type Output = UTerm
The resulting type after applying the *
operator.
fn mul(self, _: B1) -> Self::Output
[src]
impl<U: Unsigned, B: Bit> Mul<B1> for UInt<U, B>
[src]
UInt * B1 = UInt
type Output = UInt<U, B>
The resulting type after applying the *
operator.
fn mul(self, _: B1) -> Self::Output
[src]
impl NonZero for B1
[src]
impl Not for B1
[src]
Not of 1 (!1 = 0)
impl Ord for B1
[src]
fn cmp(&self, other: &B1) -> 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<B1> for B1
[src]
impl PartialOrd<B1> for B1
[src]
fn partial_cmp(&self, other: &B1) -> 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 PowerOfTwo 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.
fn shl(self, _: B1) -> Self::Output
[src]
impl<U: Unsigned, B: Bit> Shl<B1> for UInt<U, B>
[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.
fn shl(self, _: B1) -> Self::Output
[src]
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.
fn shr(self, _: B1) -> Self::Output
[src]
impl<U: Unsigned, B: Bit> Shr<B1> for UInt<U, B>
[src]
Shifting right a UInt
by a 1 bit: UInt<U, B> >> B1 = U
type Output = U
The resulting type after applying the >>
operator.
fn shr(self, _: B1) -> Self::Output
[src]
impl StructuralEq for B1
[src]
impl StructuralPartialEq for B1
[src]
impl<U: Unsigned, B: Bit> Sub<B1> for UInt<UInt<U, B>, B1>
[src]
UInt<U, B1> - B1 = UInt<U, B0>
type Output = UInt<UInt<U, B>, B0>
The resulting type after applying the -
operator.
fn sub(self, _: B1) -> Self::Output
[src]
impl Sub<B1> for UInt<UTerm, B1>
[src]
UInt<UTerm, B1> - B1 = UTerm
type Output = UTerm
The resulting type after applying the -
operator.
fn sub(self, _: B1) -> Self::Output
[src]
impl<U: Unsigned> Sub<B1> for UInt<U, B0> where
U: Sub<B1>,
Sub1<U>: Unsigned,
[src]
U: Sub<B1>,
Sub1<U>: Unsigned,
UInt<U, B0> - B1 = UInt<U - B1, B1>
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> 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, 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>,