typenum::consts

Type Alias 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,

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 Sealed for B1

Source§

impl StructuralPartialEq for B1