Type Alias digest::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() -> B1

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)

§

type Output = B0

The resulting type after applying the & operator.
source§

fn bitand(self, _: B0) -> <B1 as BitAnd<B0>>::Output

Performs the & operation. Read more
source§

impl BitAnd<B1> for B1

And with 1 ( 1 & 1 = 1)

§

type Output = B1

The resulting type after applying the & operator.
source§

fn bitand(self, _: B1) -> <B1 as BitAnd<B1>>::Output

Performs the & operation. Read more
source§

impl<Rhs> BitOr<Rhs> for B1where Rhs: Bit,

Or with 1 ( 1 | B = 1)

§

type Output = B1

The resulting type after applying the | operator.
source§

fn bitor(self, _: Rhs) -> <B1 as BitOr<Rhs>>::Output

Performs the | operation. Read more
source§

impl BitXor<B0> for B1

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

§

type Output = B1

The resulting type after applying the ^ operator.
source§

fn bitxor(self, _: B0) -> <B1 as BitXor<B0>>::Output

Performs the ^ operation. Read more
source§

impl BitXor<B1> for B1

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

§

type Output = B0

The resulting type after applying the ^ operator.
source§

fn bitxor(self, _: B1) -> <B1 as BitXor<B1>>::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

§

type Output = Greater

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

impl Cmp<B1> for B1

§

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<(), Error>

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>(&self, state: &mut __H)where __H: Hasher,

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

§

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

§

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

§

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

§

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)

§

type Output = B0

The resulting type after applying the ! operator.
source§

fn not(self) -> <B1 as Not>::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) -> Selfwhere Self: Sized,

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

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

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

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

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

impl PartialEq<B1> for B1

source§

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

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

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

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

impl PartialOrd<B1> 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

This method 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

This method 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

This method 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

This method 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 StructuralEq for B1

source§

impl StructuralPartialEq for B1