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);RunExamples
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!"),
}RunAlso, 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);RunImplementations
Trait Implementations
impl<T, const LANES: usize> BitAnd<Mask<T, LANES>> for bool where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
source
impl<T, const LANES: usize> BitAnd<Mask<T, LANES>> for bool where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
sourceimpl<T, const LANES: usize> BitAnd<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
source
impl<T, const LANES: usize> BitAnd<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
sourceimpl<'_> BitAndAssign<&'_ bool> for bool
1.22.0 (const: unstable) · source
impl<'_> BitAndAssign<&'_ bool> for bool
1.22.0 (const: unstable) · sourcefn bitand_assign(&mut self, other: &bool)
const: unstable · source
fn bitand_assign(&mut self, other: &bool)
const: unstable · sourcePerforms the &= operation. Read more
impl<T, const LANES: usize> BitAndAssign<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
source
impl<T, const LANES: usize> BitAndAssign<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
sourcefn bitand_assign(&mut self, rhs: bool)
source
fn bitand_assign(&mut self, rhs: bool)
sourcePerforms the &= operation. Read more
impl BitAndAssign<bool> for bool
1.8.0 (const: unstable) · source
impl BitAndAssign<bool> for bool
1.8.0 (const: unstable) · sourcefn bitand_assign(&mut self, other: bool)
const: unstable · source
fn bitand_assign(&mut self, other: bool)
const: unstable · sourcePerforms the &= operation. Read more
impl<T, const LANES: usize> BitOr<Mask<T, LANES>> for bool where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
source
impl<T, const LANES: usize> BitOr<Mask<T, LANES>> for bool where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
sourceimpl<T, const LANES: usize> BitOr<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
source
impl<T, const LANES: usize> BitOr<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
sourceimpl<'_> BitOrAssign<&'_ bool> for bool
1.22.0 (const: unstable) · source
impl<'_> BitOrAssign<&'_ bool> for bool
1.22.0 (const: unstable) · sourcefn bitor_assign(&mut self, other: &bool)
const: unstable · source
fn bitor_assign(&mut self, other: &bool)
const: unstable · sourcePerforms the |= operation. Read more
impl<T, const LANES: usize> BitOrAssign<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
source
impl<T, const LANES: usize> BitOrAssign<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
sourcefn bitor_assign(&mut self, rhs: bool)
source
fn bitor_assign(&mut self, rhs: bool)
sourcePerforms the |= operation. Read more
impl BitOrAssign<bool> for bool
1.8.0 (const: unstable) · source
impl BitOrAssign<bool> for bool
1.8.0 (const: unstable) · sourcefn bitor_assign(&mut self, other: bool)
const: unstable · source
fn bitor_assign(&mut self, other: bool)
const: unstable · sourcePerforms the |= operation. Read more
impl<T, const LANES: usize> BitXor<Mask<T, LANES>> for bool where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
source
impl<T, const LANES: usize> BitXor<Mask<T, LANES>> for bool where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
sourceimpl<T, const LANES: usize> BitXor<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
source
impl<T, const LANES: usize> BitXor<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
sourceimpl<'_> BitXorAssign<&'_ bool> for bool
1.22.0 (const: unstable) · source
impl<'_> BitXorAssign<&'_ bool> for bool
1.22.0 (const: unstable) · sourcefn bitxor_assign(&mut self, other: &bool)
const: unstable · source
fn bitxor_assign(&mut self, other: &bool)
const: unstable · sourcePerforms the ^= operation. Read more
impl<T, const LANES: usize> BitXorAssign<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
source
impl<T, const LANES: usize> BitXorAssign<bool> for Mask<T, LANES> where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
sourcefn bitxor_assign(&mut self, rhs: bool)
source
fn bitxor_assign(&mut self, rhs: bool)
sourcePerforms the ^= operation. Read more
impl BitXorAssign<bool> for bool
1.8.0 (const: unstable) · source
impl BitXorAssign<bool> for bool
1.8.0 (const: unstable) · sourcefn bitxor_assign(&mut self, other: bool)
const: unstable · source
fn bitxor_assign(&mut self, other: bool)
const: unstable · sourcePerforms the ^= operation. Read more
impl From<bool> for AtomicBool
1.24.0 (const: unstable) · source
impl From<bool> for AtomicBool
1.24.0 (const: unstable) · sourceimpl FromStr for bool
source
impl FromStr for bool
sourcefn from_str(s: &str) -> Result<bool, ParseBoolError>
source
fn from_str(s: &str) -> Result<bool, ParseBoolError>
sourceParse 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());RunNote, 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());Runtype Err = ParseBoolError
type Err = ParseBoolError
The associated error which can be returned from parsing.
impl Ord for bool
source
impl Ord for bool
sourceimpl PartialOrd<bool> for bool
source
impl PartialOrd<bool> for bool
sourcefn partial_cmp(&self, other: &bool) -> Option<Ordering>
source
fn partial_cmp(&self, other: &bool) -> Option<Ordering>
sourceThis method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
source
fn lt(&self, other: &Rhs) -> bool
sourceThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool
source
fn le(&self, other: &Rhs) -> bool
sourceThis method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for bool
sourceimpl Eq for bool
sourceAuto Trait Implementations
impl RefUnwindSafe for bool
impl Send for bool
impl Sync for bool
impl Unpin for bool
impl UnwindSafe for bool
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
source
impl<T> BorrowMut<T> for T where
T: ?Sized,
sourcefn borrow_mut(&mut self) -> &mut T
const: unstable · source
fn borrow_mut(&mut self) -> &mut T
const: unstable · sourceMutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
source
impl<T> ToOwned for T where
T: Clone,
sourcetype Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
source
fn clone_into(&self, target: &mut T)
sourceUses borrowed data to replace owned data, usually by cloning. Read more