Primitive Type bool [−]
The boolean type.
The boolean type.
impl Not for bool
impl<'a> Not for &'a bool
impl BitAnd<bool> for bool
impl<'a> BitAnd<bool> for &'a bool
impl<'a> BitAnd<&'a bool> for bool
impl<'a, 'b> BitAnd<&'a bool> for &'b bool
impl BitOr<bool> for bool
impl<'a> BitOr<bool> for &'a bool
impl<'a> BitOr<&'a bool> for bool
impl<'a, 'b> BitOr<&'a bool> for &'b bool
impl BitXor<bool> for bool
impl<'a> BitXor<bool> for &'a bool
impl<'a> BitXor<&'a bool> for bool
impl<'a, 'b> BitXor<&'a bool> for &'b bool
impl BitAndAssign<bool> for bool
fn bitand_assign(&mut self, other: bool)
impl BitOrAssign<bool> for bool
fn bitor_assign(&mut self, other: bool)
impl BitXorAssign<bool> for bool
fn bitxor_assign(&mut self, other: bool)
impl PartialEq<bool> for bool
impl Eq for bool
impl PartialOrd<bool> for bool
fn partial_cmp(&self, other: &bool) -> Option<Ordering>
fn lt(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
fn gt(&self, other: &Rhs) -> bool
fn ge(&self, other: &Rhs) -> bool
impl Ord for bool
impl Clone for bool
fn clone(&self) -> bool
fn clone_from(&mut self, source: &Self)
impl Default for bool
impl FromStr for bool
type Err = ParseBoolError
fn from_str(s: &str) -> Result<bool, ParseBoolError>
impl Hash for bool
fn hash<H>(&self, state: &mut H) where H: Hasher
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
impl Debug for bool
impl Display for bool