Type Alias typenum::consts::True

source ·
pub type True = B1;

Aliased Type§

struct True;

Implementations

source§

impl B1

source

pub fn new() -> B1

Instantiates a singleton representing this bit.

Trait Implementations

source§

impl Bit for B1

source§

const U8: u8 = 1u8

source§

const BOOL: bool = true

source§

fn new() -> Self

Instantiates a singleton representing this bit.
source§

fn to_u8() -> u8

source§

fn to_bool() -> bool

source§

impl BitAnd<B0> for B1

And with 1 ( 1 & 0 = 0)

source§

type Output = B0

The resulting type after applying the & operator.
source§

fn bitand(self, _: B0) -> Self::Output

Performs the & operation. Read more
source§

impl BitAnd for B1

And with 1 ( 1 & 1 = 1)

source§

type Output = B1

The resulting type after applying the & operator.
source§

fn bitand(self, _: B1) -> Self::Output

Performs the & operation. Read more
source§

impl<Rhs: Bit> BitOr<Rhs> for B1

Or with 1 ( 1 | B = 1)

source§

type Output = B1

The resulting type after applying the | operator.
source§

fn bitor(self, _: Rhs) -> Self::Output

Performs the | operation. Read more
source§

impl BitXor<B0> for B1

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

source§

type Output = B1

The resulting type after applying the ^ operator.
source§

fn bitxor(self, _: B0) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor for B1

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

source§

type Output = B0

The resulting type after applying the ^ operator.
source§

fn bitxor(self, _: B1) -> Self::Output

Performs the ^ operation. Read more
source§

impl Clone for B1

source§

fn clone(&self) -> B1

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Cmp<B0> for B1

source§

type Output = Greater

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

impl Cmp for B1

source§

type Output = Equal

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

impl Debug for B1

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for B1

source§

fn default() -> B1

Returns the “default value” for a type. Read more
source§

impl Hash for B1

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Max<B0> for B1

source§

type Output = B1

The type of the maximum of Self and Rhs
source§

fn max(self, _: B0) -> B1

Method returning the maximum
source§

impl Max for B1

source§

type Output = B1

The type of the maximum of Self and Rhs
source§

fn max(self, _: B1) -> B1

Method returning the maximum
source§

impl Min<B0> for B1

source§

type Output = B0

The type of the minimum of Self and Rhs
source§

fn min(self, rhs: B0) -> B0

Method returning the minimum
source§

impl Min for B1

source§

type Output = B1

The type of the minimum of Self and Rhs
source§

fn min(self, _: B1) -> B1

Method returning the minimum
source§

impl Not for B1

Not of 1 (!1 = 0)

source§

type Output = B0

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl Ord for B1

source§

fn cmp(&self, other: &B1) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for B1

source§

fn eq(&self, other: &B1) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for B1

source§

fn partial_cmp(&self, other: &B1) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for B1

source§

impl Eq for B1

source§

impl NonZero for B1

source§

impl PowerOfTwo for B1

source§

impl StructuralPartialEq for B1