[−][src]Struct heapless::consts::B0
The type-level bit 0.
Methods
impl B0[src]
Trait Implementations
impl Clone for B0[src]
fn clone(&self) -> B0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Not for B0[src]
Not of 0 (!0 = 1)
type Output = B1
The resulting type after applying the ! operator.
fn not(self) -> <B0 as Not>::Output[src]
impl Bit for B0[src]
impl Debug for B0[src]
impl PartialEq<B0> for B0[src]
fn eq(&self, other: &B0) -> bool[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Ord for B0[src]
fn cmp(&self, other: &B0) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
impl PartialOrd<B0> for B0[src]
fn partial_cmp(&self, other: &B0) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
This 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]
This 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]
This 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]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Max<B1> for B0[src]
impl Max<B0> for B1[src]
impl Max<B0> for B0[src]
impl Min<B0> for B1[src]
impl Min<B0> for B0[src]
impl Min<B1> for B0[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) -> <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.
fn bitxor(self, B1) -> <B0 as BitXor<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.
fn bitxor(self, B0) -> <B0 as BitXor<B0>>::Output[src]
impl Hash for B0[src]
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher, [src]
__H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Eq for B0[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) -> <B0 as BitOr<B1>>::Output[src]
impl BitOr<B0> for B0[src]
Or with 0 ( 0 | 0 = 0)
type Output = B0
The resulting type after applying the | operator.
fn bitor(self, B0) -> <B0 as BitOr<B0>>::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.
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.
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 Default for B0[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.
fn bitand(self, Rhs) -> <B0 as BitAnd<Rhs>>::Output[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) -> <B1 as BitAnd<B0>>::Output[src]
impl Copy for B0[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto 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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<A, B> IsEqual for A where
A: Cmp<B> + IsEqualPrivate<B, <A as Cmp<B>>::Output>, [src]
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]
impl<A, B> IsLessOrEqual for A where
A: Cmp<B> + IsLessOrEqualPrivate<B, <A as Cmp<B>>::Output>, [src]
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]
impl<T> Same for T[src]
type Output = T
Should always be Self
impl<A, B> IsLess for A where
A: Cmp<B> + IsLessPrivate<B, <A as Cmp<B>>::Output>, [src]
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]
impl<A, B> IsGreater for A where
A: Cmp<B> + IsGreaterPrivate<B, <A as Cmp<B>>::Output>, [src]
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]
impl<A, B> IsNotEqual for A where
A: Cmp<B> + IsNotEqualPrivate<B, <A as Cmp<B>>::Output>, [src]
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]
impl<A, B> IsGreaterOrEqual for A where
A: Cmp<B> + IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>, [src]
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