bool

Primitive Type bool 

1.0.0
Expand description

The boolean type.

The bool represents a value, which could only be either true or false. If you cast a bool into an integer, true will be 1 and false will be 0.

§Basic usage

bool implements various traits, such as BitAnd, BitOr, Not, etc., which allow us to perform boolean operations using &, | and !.

if requires a bool value as its conditional. assert!, which is an important macro in testing, checks whether an expression is true and panics if it isn’t.

let bool_val = true & false | false;
assert!(!bool_val);

§Examples

A trivial example of the usage of bool:

let praise_the_borrow_checker = true;

// using the `if` conditional
if praise_the_borrow_checker {
    println!("oh, yeah!");
} else {
    println!("what?!!");
}

// ... or, a match pattern
match praise_the_borrow_checker {
    true => println!("keep praising!"),
    false => println!("you should praise!"),
}

Also, since bool implements the Copy trait, we don’t have to worry about the move semantics (just like the integer and float primitives).

Now an example of bool cast to integer type:

assert_eq!(true as i32, 1);
assert_eq!(false as i32, 0);

Implementations§

Source§

impl bool

1.62.0 · Source

pub fn then_some<T>(self, t: T) -> Option<T>

Returns Some(t) if the bool is true, or None otherwise.

Arguments passed to then_some are eagerly evaluated; if you are passing the result of a function call, it is recommended to use then, which is lazily evaluated.

§Examples
assert_eq!(false.then_some(0), None);
assert_eq!(true.then_some(0), Some(0));
let mut a = 0;
let mut function_with_side_effects = || { a += 1; };

true.then_some(function_with_side_effects());
false.then_some(function_with_side_effects());

// `a` is incremented twice because the value passed to `then_some` is
// evaluated eagerly.
assert_eq!(a, 2);
1.50.0 · Source

pub fn then<T, F: FnOnce() -> T>(self, f: F) -> Option<T>

Returns Some(f()) if the bool is true, or None otherwise.

§Examples
assert_eq!(false.then(|| 0), None);
assert_eq!(true.then(|| 0), Some(0));
let mut a = 0;

true.then(|| { a += 1; });
false.then(|| { a += 1; });

// `a` is incremented once because the closure is evaluated lazily by
// `then`.
assert_eq!(a, 1);
Source

pub fn ok_or<E>(self, err: E) -> Result<(), E>

🔬This is a nightly-only experimental API. (bool_to_result #142748)

Returns Ok(()) if the bool is true, or Err(err) otherwise.

Arguments passed to ok_or are eagerly evaluated; if you are passing the result of a function call, it is recommended to use ok_or_else, which is lazily evaluated.

§Examples
#![feature(bool_to_result)]

assert_eq!(false.ok_or(0), Err(0));
assert_eq!(true.ok_or(0), Ok(()));
#![feature(bool_to_result)]

let mut a = 0;
let mut function_with_side_effects = || { a += 1; };

assert!(true.ok_or(function_with_side_effects()).is_ok());
assert!(false.ok_or(function_with_side_effects()).is_err());

// `a` is incremented twice because the value passed to `ok_or` is
// evaluated eagerly.
assert_eq!(a, 2);
Source

pub fn ok_or_else<E, F: FnOnce() -> E>(self, f: F) -> Result<(), E>

🔬This is a nightly-only experimental API. (bool_to_result #142748)

Returns Ok(()) if the bool is true, or Err(f()) otherwise.

§Examples
#![feature(bool_to_result)]

assert_eq!(false.ok_or_else(|| 0), Err(0));
assert_eq!(true.ok_or_else(|| 0), Ok(()));
#![feature(bool_to_result)]

let mut a = 0;

assert!(true.ok_or_else(|| { a += 1; }).is_ok());
assert!(false.ok_or_else(|| { a += 1; }).is_err());

// `a` is incremented once because the closure is evaluated lazily by
// `ok_or_else`.
assert_eq!(a, 1);

Trait Implementations§

1.0.0 (const: unstable) · Source§

impl BitAnd<&bool> for &bool

Source§

type Output = <bool as BitAnd>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: &bool) -> <bool as BitAnd<bool>>::Output

Performs the & operation. Read more
1.0.0 (const: unstable) · Source§

impl BitAnd<&bool> for bool

Source§

type Output = <bool as BitAnd>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: &bool) -> <bool as BitAnd<bool>>::Output

Performs the & operation. Read more
1.0.0 (const: unstable) · Source§

impl BitAnd<bool> for &bool

Source§

type Output = <bool as BitAnd>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: bool) -> <bool as BitAnd<bool>>::Output

Performs the & operation. Read more
1.0.0 (const: unstable) · Source§

impl BitAnd for bool

Source§

type Output = bool

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: bool) -> bool

Performs the & operation. Read more
1.22.0 (const: unstable) · Source§

impl BitAndAssign<&bool> for bool

Source§

fn bitand_assign(&mut self, other: &bool)

Performs the &= operation. Read more
1.8.0 (const: unstable) · Source§

impl BitAndAssign for bool

Source§

fn bitand_assign(&mut self, other: bool)

Performs the &= operation. Read more
1.0.0 (const: unstable) · Source§

impl BitOr<&bool> for &bool

Source§

type Output = <bool as BitOr>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: &bool) -> <bool as BitOr<bool>>::Output

Performs the | operation. Read more
1.0.0 (const: unstable) · Source§

impl BitOr<&bool> for bool

Source§

type Output = <bool as BitOr>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: &bool) -> <bool as BitOr<bool>>::Output

Performs the | operation. Read more
1.0.0 (const: unstable) · Source§

impl BitOr<bool> for &bool

Source§

type Output = <bool as BitOr>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: bool) -> <bool as BitOr<bool>>::Output

Performs the | operation. Read more
1.0.0 (const: unstable) · Source§

impl BitOr for bool

Source§

type Output = bool

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: bool) -> bool

Performs the | operation. Read more
1.22.0 (const: unstable) · Source§

impl BitOrAssign<&bool> for bool

Source§

fn bitor_assign(&mut self, other: &bool)

Performs the |= operation. Read more
1.8.0 (const: unstable) · Source§

impl BitOrAssign for bool

Source§

fn bitor_assign(&mut self, other: bool)

Performs the |= operation. Read more
1.0.0 (const: unstable) · Source§

impl BitXor<&bool> for &bool

Source§

type Output = <bool as BitXor>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: &bool) -> <bool as BitXor<bool>>::Output

Performs the ^ operation. Read more
1.0.0 (const: unstable) · Source§

impl BitXor<&bool> for bool

Source§

type Output = <bool as BitXor>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: &bool) -> <bool as BitXor<bool>>::Output

Performs the ^ operation. Read more
1.0.0 (const: unstable) · Source§

impl BitXor<bool> for &bool

Source§

type Output = <bool as BitXor>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: bool) -> <bool as BitXor<bool>>::Output

Performs the ^ operation. Read more
1.0.0 (const: unstable) · Source§

impl BitXor for bool

Source§

type Output = bool

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: bool) -> bool

Performs the ^ operation. Read more
1.22.0 (const: unstable) · Source§

impl BitXorAssign<&bool> for bool

Source§

fn bitxor_assign(&mut self, other: &bool)

Performs the ^= operation. Read more
1.8.0 (const: unstable) · Source§

impl BitXorAssign for bool

Source§

fn bitxor_assign(&mut self, other: bool)

Performs the ^= operation. Read more
1.0.0 · Source§

impl Clone for bool

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
1.0.0 (const: unstable) · Source§

impl Not for &bool

Source§

type Output = <bool as Not>::Output

The resulting type after applying the ! operator.
Source§

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

Performs the unary ! operation. Read more
1.0.0 (const: unstable) · Source§

impl Not for bool

Source§

type Output = bool

The resulting type after applying the ! operator.
Source§

fn not(self) -> bool

Performs the unary ! operation. Read more
1.0.0 (const: unstable) · Source§

impl Ord for bool

Source§

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

This method returns an Ordering between self and other. Read more
Source§

fn min(self, other: bool) -> bool

Compares and returns the minimum of two values. Read more
Source§

fn max(self, other: bool) -> bool

Compares and returns the maximum of two values. Read more
Source§

fn clamp(self, min: bool, max: bool) -> bool

Restrict a value to a certain interval. Read more
1.0.0 (const: unstable) · Source§

impl PartialEq for bool

Source§

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

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

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
1.0.0 (const: unstable) · Source§

impl PartialOrd for bool

Source§

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

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

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

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

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

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

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

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

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

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

impl Copy for bool

1.0.0 (const: unstable) · Source§

impl Eq for bool

Auto Trait Implementations§

§

impl Freeze for bool

§

impl Send for bool

§

impl Sync for bool

Blanket Implementations§

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.