Primitive Type bool1.0.0[]

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 always demands a bool value. assert!, being an important macro in testing, checks whether an expression returns true.

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

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!"),
}Run

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);Run

Trait Implementations

impl BitAnd<m1x32> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m64x4> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl<'a, 'b> BitAnd<&'a bool> for &'b bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m1x8> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m16x4> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m32x2> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m1x64> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m16x8> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m32x8> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<bool> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m8x8> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m8x32> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m8x2> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m16x2> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m16x16> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m8x16> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl<'a> BitAnd<bool> for &'a bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m1x16> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m8x4> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl<'a> BitAnd<&'a bool> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m64x2> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m32x4> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl FromStr for bool
[src]

The associated error which can be returned from parsing.

Parse a bool from a string.

Yields a Result<bool, ParseBoolError>, because s may or may not actually be parseable.

Examples

use std::str::FromStr;

assert_eq!(FromStr::from_str("true"), Ok(true));
assert_eq!(FromStr::from_str("false"), Ok(false));
assert!(<bool as FromStr>::from_str("not even a boolean").is_err());Run

Note, in many cases, the .parse() method on str is more proper.

assert_eq!("true".parse(), Ok(true));
assert_eq!("false".parse(), Ok(false));
assert!("not even a boolean".parse::<bool>().is_err());Run

impl Debug for bool
[src]

Formats the value using the given formatter. Read more

impl Default for bool
[src]

Returns the default value of false

impl<'a> BitXorAssign<&'a bool> for bool
1.22.0
[src]

Performs the ^= operation.

impl BitXorAssign<bool> for bool
1.8.0
[src]

Performs the ^= operation.

impl<'a> BitOrAssign<&'a bool> for bool
1.22.0
[src]

Performs the |= operation.

impl BitOrAssign<bool> for bool
1.8.0
[src]

Performs the |= operation.

impl<'a> BitAndAssign<&'a bool> for bool
1.22.0
[src]

Performs the &= operation.

impl BitAndAssign<bool> for bool
1.8.0
[src]

Performs the &= operation.

impl BitOr<bool> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m8x2> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m8x16> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m32x2> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m16x8> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m8x8> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m64x2> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m8x32> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m32x4> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m8x4> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m1x32> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m16x2> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m16x4> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m1x16> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl<'a> BitOr<bool> for &'a bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl<'a> BitOr<&'a bool> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m1x8> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m32x8> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m1x64> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m64x4> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m16x16> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl<'a, 'b> BitOr<&'a bool> for &'b bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl Copy for bool
[src]

impl Clone for bool
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialOrd<bool> for bool
[src]

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

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl BitXor<m16x4> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m8x8> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m32x4> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m1x64> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl<'a> BitXor<bool> for &'a bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m8x4> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m1x32> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m1x8> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m8x32> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m32x2> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m64x4> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl<'a> BitXor<&'a bool> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m8x2> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m1x16> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl<'a, 'b> BitXor<&'a bool> for &'b bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m8x16> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<bool> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m32x8> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m64x2> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m16x8> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m16x16> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m16x2> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl Ord for bool
[src]

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

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl<'a> Not for &'a bool
[src]

The resulting type after applying the ! operator.

Performs the unary ! operation.

impl Not for bool
[src]

The resulting type after applying the ! operator.

Performs the unary ! operation.

impl Eq for bool
[src]

impl PartialEq<bool> for bool
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for bool
[src]

Formats the value using the given formatter. Read more

impl Hash for bool
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more