[−][src]Struct typenum::bit::B1
The type-level bit 1.
Methods
impl B1[src]
impl B1Trait Implementations
impl NonZero for B1[src]
impl NonZero for B1impl Bit for B1[src]
impl Bit for B1impl PowerOfTwo for B1[src]
impl PowerOfTwo for B1impl Cmp<B1> for B0[src]
impl Cmp<B1> for B0type Output = Less
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl Cmp<B0> for B1[src]
impl Cmp<B0> for B1type Output = Greater
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl Cmp<B1> for B1[src]
impl Cmp<B1> for B1type Output = Equal
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl Min<B1> for B0[src]
impl Min<B1> for B0type Output = B0
The type of the minimum of Self and Rhs
fn min(self, _: B1) -> B0[src]
fn min(self, _: B1) -> B0Method returning the minimum
impl Min<B0> for B1[src]
impl Min<B0> for B1type Output = B0
The type of the minimum of Self and Rhs
fn min(self, rhs: B0) -> B0[src]
fn min(self, rhs: B0) -> B0Method returning the minimum
impl Min<B1> for B1[src]
impl Min<B1> for B1type Output = B1
The type of the minimum of Self and Rhs
fn min(self, _: B1) -> B1[src]
fn min(self, _: B1) -> B1Method returning the minimum
impl Max<B1> for B0[src]
impl Max<B1> for B0type Output = B1
The type of the maximum of Self and Rhs
fn max(self, rhs: B1) -> B1[src]
fn max(self, rhs: B1) -> B1Method returning the maximum
impl Max<B0> for B1[src]
impl Max<B0> for B1type Output = B1
The type of the maximum of Self and Rhs
fn max(self, _: B0) -> B1[src]
fn max(self, _: B0) -> B1Method returning the maximum
impl Max<B1> for B1[src]
impl Max<B1> for B1type Output = B1
The type of the maximum of Self and Rhs
fn max(self, _: B1) -> B1[src]
fn max(self, _: B1) -> B1Method returning the maximum
impl PartialEq<B1> for B1[src]
impl PartialEq<B1> for B1fn eq(&self, other: &B1) -> bool[src]
fn eq(&self, other: &B1) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Eq for B1[src]
impl Eq for B1impl Ord for B1[src]
impl Ord for B1fn cmp(&self, other: &B1) -> Ordering[src]
fn cmp(&self, other: &B1) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl PartialOrd<B1> for B1[src]
impl PartialOrd<B1> for B1fn partial_cmp(&self, other: &B1) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &B1) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn lt(&self, other: &Rhs) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Debug for B1[src]
impl Debug for B1fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Add<B1> for UTerm[src]
impl Add<B1> for UTermUTerm + B1 = UInt<UTerm, B1>
type Output = UInt<UTerm, B1>
The resulting type after applying the + operator.
fn add(self, _: B1) -> Self::Output[src]
fn add(self, _: B1) -> Self::OutputPerforms the + operation.
impl<U: Unsigned> Add<B1> for UInt<U, B0>[src]
impl<U: Unsigned> Add<B1> for UInt<U, B0>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]
fn add(self, _: B1) -> Self::OutputPerforms the + operation.
impl<U: Unsigned> Add<B1> for UInt<U, B1> where
U: Add<B1>,
Add1<U>: Unsigned, [src]
impl<U: Unsigned> Add<B1> for UInt<U, B1> where
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]
fn add(self, _: B1) -> Self::OutputPerforms the + operation.
impl<U: Unsigned, B: Bit> Sub<B1> for UInt<UInt<U, B>, B1>[src]
impl<U: Unsigned, B: Bit> Sub<B1> for UInt<UInt<U, B>, B1>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]
fn sub(self, _: B1) -> Self::OutputPerforms the - operation.
impl Sub<B1> for UInt<UTerm, B1>[src]
impl Sub<B1> for UInt<UTerm, B1>UInt<UTerm, B1> - B1 = UTerm
type Output = UTerm
The resulting type after applying the - operator.
fn sub(self, _: B1) -> Self::Output[src]
fn sub(self, _: B1) -> Self::OutputPerforms the - operation.
impl<U: Unsigned> Sub<B1> for UInt<U, B0> where
U: Sub<B1>,
Sub1<U>: Unsigned, [src]
impl<U: Unsigned> Sub<B1> for UInt<U, B0> where
U: Sub<B1>,
Sub1<U>: Unsigned, UInt<U, B0> - B1 = UInt<U - B1, B1>
type Output = UInt<Sub1<U>, B1>
The resulting type after applying the - operator.
fn sub(self, _: B1) -> Self::Output[src]
fn sub(self, _: B1) -> Self::OutputPerforms the - operation.
impl Mul<B1> for UTerm[src]
impl Mul<B1> for UTermUTerm * B1 = UTerm
type Output = UTerm
The resulting type after applying the * operator.
fn mul(self, _: B1) -> Self::Output[src]
fn mul(self, _: B1) -> Self::OutputPerforms the * operation.
impl<U: Unsigned, B: Bit> Mul<B1> for UInt<U, B>[src]
impl<U: Unsigned, B: Bit> Mul<B1> for UInt<U, B>UInt * B1 = UInt
type Output = UInt<U, B>
The resulting type after applying the * operator.
fn mul(self, _: B1) -> Self::Output[src]
fn mul(self, _: B1) -> Self::OutputPerforms the * operation.
impl Not for B1[src]
impl Not for B1Not of 1 (!1 = 0)
type Output = B0
The resulting type after applying the ! operator.
fn not(self) -> Self::Output[src]
fn not(self) -> Self::OutputPerforms the unary ! operation.
impl BitAnd<B0> for B1[src]
impl BitAnd<B0> for B1And with 1 ( 1 & 0 = 0)
type Output = B0
The resulting type after applying the & operator.
fn bitand(self, _: B0) -> Self::Output[src]
fn bitand(self, _: B0) -> Self::OutputPerforms the & operation.
impl BitAnd<B1> for B1[src]
impl BitAnd<B1> for B1And with 1 ( 1 & 1 = 1)
type Output = B1
The resulting type after applying the & operator.
fn bitand(self, _: B1) -> Self::Output[src]
fn bitand(self, _: B1) -> Self::OutputPerforms the & operation.
impl BitOr<B1> for B0[src]
impl BitOr<B1> for B0Or with 0 ( 0 | 1 = 1)
type Output = B1
The resulting type after applying the | operator.
fn bitor(self, _: B1) -> Self::Output[src]
fn bitor(self, _: B1) -> Self::OutputPerforms the | operation.
impl<Rhs: Bit> BitOr<Rhs> for B1[src]
impl<Rhs: Bit> BitOr<Rhs> for B1Or with 1 ( 1 | B = 1)
type Output = B1
The resulting type after applying the | operator.
fn bitor(self, _: Rhs) -> Self::Output[src]
fn bitor(self, _: Rhs) -> Self::OutputPerforms the | operation.
impl BitXor<B0> for B1[src]
impl BitXor<B0> for B1Xor between 1 and 0 ( 1 ^ 0 = 1)
type Output = B1
The resulting type after applying the ^ operator.
fn bitxor(self, _: B0) -> Self::Output[src]
fn bitxor(self, _: B0) -> Self::OutputPerforms the ^ operation.
impl BitXor<B1> for B0[src]
impl BitXor<B1> for B0Xor between 0 and 1 ( 0 ^ 1 = 1)
type Output = B1
The resulting type after applying the ^ operator.
fn bitxor(self, _: B1) -> Self::Output[src]
fn bitxor(self, _: B1) -> Self::OutputPerforms the ^ operation.
impl BitXor<B1> for B1[src]
impl BitXor<B1> for B1Xor between 1 and 1 ( 1 ^ 1 = 0)
type Output = B0
The resulting type after applying the ^ operator.
fn bitxor(self, _: B1) -> Self::Output[src]
fn bitxor(self, _: B1) -> Self::OutputPerforms the ^ operation.
impl Shl<B1> for UTerm[src]
impl Shl<B1> for UTermShifting 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]
fn shl(self, _: B1) -> Self::OutputPerforms the << operation.
impl<U: Unsigned, B: Bit> Shl<B1> for UInt<U, B>[src]
impl<U: Unsigned, B: Bit> Shl<B1> for UInt<U, B>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]
fn shl(self, _: B1) -> Self::OutputPerforms the << operation.
impl Shr<B1> for UTerm[src]
impl Shr<B1> for UTermShifting 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]
fn shr(self, _: B1) -> Self::OutputPerforms the >> operation.
impl<U: Unsigned, B: Bit> Shr<B1> for UInt<U, B>[src]
impl<U: Unsigned, B: Bit> Shr<B1> for UInt<U, B>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]
fn shr(self, _: B1) -> Self::OutputPerforms the >> operation.
impl Hash for B1[src]
impl Hash for B1fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Copy for B1[src]
impl Copy for B1impl Clone for B1[src]
impl Clone for B1fn clone(&self) -> B1[src]
fn clone(&self) -> B1Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Default for B1[src]
impl Default for B1Auto Trait Implementations
Blanket Implementations
impl<T> Same for T[src]
impl<T> Same for Ttype Output = T
Should always be Self
impl<A, B> IsLess for A where
A: Cmp<B> + IsLessPrivate<B, <A as Cmp<B>>::Output>, [src]
impl<A, B> IsLess for A where
A: Cmp<B> + IsLessPrivate<B, <A as Cmp<B>>::Output>, type Output = <A as IsLessPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_less(Self, B) -> <A as IsLess<B>>::Output[src]
fn is_less(Self, B) -> <A as IsLess<B>>::OutputMethod returning True or False.
impl<A, B> IsEqual for A where
A: Cmp<B> + IsEqualPrivate<B, <A as Cmp<B>>::Output>, [src]
impl<A, B> IsEqual for A where
A: Cmp<B> + IsEqualPrivate<B, <A as Cmp<B>>::Output>, type Output = <A as IsEqualPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_equal(Self, B) -> <A as IsEqual<B>>::Output[src]
fn is_equal(Self, B) -> <A as IsEqual<B>>::OutputMethod returning True or False.
impl<A, B> IsGreater for A where
A: Cmp<B> + IsGreaterPrivate<B, <A as Cmp<B>>::Output>, [src]
impl<A, B> IsGreater for A where
A: Cmp<B> + IsGreaterPrivate<B, <A as Cmp<B>>::Output>, type Output = <A as IsGreaterPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_greater(Self, B) -> <A as IsGreater<B>>::Output[src]
fn is_greater(Self, B) -> <A as IsGreater<B>>::OutputMethod returning True or False.
impl<A, B> IsLessOrEqual for A where
A: Cmp<B> + IsLessOrEqualPrivate<B, <A as Cmp<B>>::Output>, [src]
impl<A, B> IsLessOrEqual for A where
A: Cmp<B> + IsLessOrEqualPrivate<B, <A as Cmp<B>>::Output>, type Output = <A as IsLessOrEqualPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_less_or_equal(Self, B) -> <A as IsLessOrEqual<B>>::Output[src]
fn is_less_or_equal(Self, B) -> <A as IsLessOrEqual<B>>::OutputMethod returning True or False.
impl<A, B> IsNotEqual for A where
A: Cmp<B> + IsNotEqualPrivate<B, <A as Cmp<B>>::Output>, [src]
impl<A, B> IsNotEqual for A where
A: Cmp<B> + IsNotEqualPrivate<B, <A as Cmp<B>>::Output>, type Output = <A as IsNotEqualPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_not_equal(Self, B) -> <A as IsNotEqual<B>>::Output[src]
fn is_not_equal(Self, B) -> <A as IsNotEqual<B>>::OutputMethod returning True or False.
impl<A, B> IsGreaterOrEqual for A where
A: Cmp<B> + IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>, [src]
impl<A, B> IsGreaterOrEqual for A where
A: Cmp<B> + IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>, type Output = <A as IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_greater_or_equal(Self, B) -> <A as IsGreaterOrEqual<B>>::Output[src]
fn is_greater_or_equal(Self, B) -> <A as IsGreaterOrEqual<B>>::OutputMethod returning True or False.
impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> From for T[src]
impl<T> From for Timpl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more