Type Alias digest::consts::False

source ·
pub type False = B0;

Aliased Type§

struct False;

Implementations§

source§

impl B0

source

pub fn new() -> B0

Instantiates a singleton representing this bit.

Trait Implementations§

source§

impl Bit for B0

source§

const U8: u8 = 0u8

source§

const BOOL: bool = false

source§

fn new() -> B0

Instantiates a singleton representing this bit.
source§

fn to_u8() -> u8

source§

fn to_bool() -> bool

source§

impl<Rhs> BitAnd<Rhs> for B0where Rhs: Bit,

And with 0 ( 0 & B = 0)

§

type Output = B0

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitOr<B0> for B0

Or with 0 ( 0 | 0 = 0)

§

type Output = B0

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<B1> for B0

Or with 0 ( 0 | 1 = 1)

§

type Output = B1

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitXor<B0> for B0

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

§

type Output = B0

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<B1> for B0

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

§

type Output = B1

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl Clone for B0

source§

fn clone(&self) -> B0

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 B0

§

type Output = Equal

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

impl Cmp<B1> for B0

§

type Output = Less

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

impl Debug for B0

source§

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

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

impl Default for B0

source§

fn default() -> B0

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

impl Hash for B0

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 B0

§

type Output = B0

The type of the maximum of Self and Rhs
source§

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

Method returning the maximum
source§

impl Max<B1> for B0

§

type Output = B1

The type of the maximum of Self and Rhs
source§

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

Method returning the maximum
source§

impl Min<B0> for B0

§

type Output = B0

The type of the minimum of Self and Rhs
source§

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

Method returning the minimum
source§

impl Min<B1> for B0

§

type Output = B0

The type of the minimum of Self and Rhs
source§

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

Method returning the minimum
source§

impl Not for B0

Not of 0 (!0 = 1)

§

type Output = B1

The resulting type after applying the ! operator.
source§

fn not(self) -> <B0 as Not>::Output

Performs the unary ! operation. Read more
source§

impl Ord for B0

source§

fn cmp(&self, other: &B0) -> 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<B0> for B0

source§

fn eq(&self, other: &B0) -> 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<B0> for B0

source§

fn partial_cmp(&self, other: &B0) -> 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 B0

source§

impl Eq for B0

source§

impl StructuralEq for B0

source§

impl StructuralPartialEq for B0

source§

impl Zero for B0