pub enum OptionBool {
SomeTrue,
SomeFalse,
None,
}Expand description
The OptionBool type, a space-efficient Option
Variants§
Implementations§
Source§impl OptionBool
impl OptionBool
Sourcepub fn is_some(&self) -> bool
pub fn is_some(&self) -> bool
Returns true if the option is a Some value.
§Examples
assert!(OptionBool::SomeTrue.is_some());
assert!(OptionBool::SomeFalse.is_some());
assert!(!OptionBool::None.is_some());Sourcepub fn is_none(&self) -> bool
pub fn is_none(&self) -> bool
Returns true if the option is a Some value.
§Examples
assert!(!OptionBool::SomeTrue.is_none());
assert!(!OptionBool::SomeFalse.is_none());
assert!(OptionBool::None.is_none());Sourcepub fn expect(&self, msg: &str) -> bool
pub fn expect(&self, msg: &str) -> bool
Unwraps the contained bool, panics on None with given message.
§Panics
if self is None
§Examples
For SomeTrue/SomeFalse, the corresponding bool is returned.
assert!(OptionBool::SomeTrue.expect("FAIL"));
assert!(!OptionBool::SomeFalse.expect("FAIL"));On None, it panics with the given message.
OptionBool::None.expect("FAIL"); // panics with FAILSourcepub fn unwrap(&self) -> bool
pub fn unwrap(&self) -> bool
Unwraps the contained bool, panics on None.
§Panics
if self is None
§Examples
For SomeTrue/SomeFalse, the corresponding bool is returned.
assert!(OptionBool::SomeTrue.unwrap());
assert!(!OptionBool::SomeFalse.unwrap());On None, it panics with “unwrap called on None”
OptionBool::None.unwrap(); // panicsSourcepub fn unwrap_or(&self, def: bool) -> bool
pub fn unwrap_or(&self, def: bool) -> bool
Returns the contained bool or a default.
§Examples
assert!(OptionBool::SomeTrue.unwrap_or(false));
assert!(!OptionBool::SomeFalse.unwrap_or(true));
assert!(OptionBool::None.unwrap_or(true));
assert!(!OptionBool::None.unwrap_or(false));Sourcepub fn unwrap_or_else<F>(self, f: F) -> bool
pub fn unwrap_or_else<F>(self, f: F) -> bool
Returns the contained bool or a computed default.
§Examples
assert!(OptionBool::SomeTrue.unwrap_or_else(|| false));
assert!(!OptionBool::SomeFalse.unwrap_or_else(|| panic!()));
assert!(OptionBool::None.unwrap_or_else(|| true));Sourcepub fn map<U, F>(self, f: F) -> Option<U>
pub fn map<U, F>(self, f: F) -> Option<U>
Maps an OptionBool to an Option<U> by applying the function
over the contained bool.
Note that there is also map_bool(..) which works
similarly, but returns another OptionBool.
§Examples
Convert the contained bool to a Yes/No message
assert_eq!(Some("Yes"), OptionBool::SomeTrue.map(
|b| if b { "Yes" } else { "No" }));Sourcepub fn map_bool<F>(self, f: F) -> OptionBool
pub fn map_bool<F>(self, f: F) -> OptionBool
Sourcepub fn map_or<U, F>(self, default: U, f: F) -> U
pub fn map_or<U, F>(self, default: U, f: F) -> U
Maps a value to a U by applying the function or return a
default U.
§Examples
Map to a string (as per the daily wtf’s boolean definition):
assert_eq!("True", OptionBool::SomeTrue.map_or("FileNotFound",
|b| if b { "True" } else { "False" }));Sourcepub fn map_or_else<U, D, F>(self, default: D, f: F) -> U
pub fn map_or_else<U, D, F>(self, default: D, f: F) -> U
Maps a value to a U by applying the function or return a
computed default.
§Examples
assert_eq!("True", OptionBool::SomeTrue.map_or_else(|| "FileNotFound",
|b| if b { "True" } else { "False" }));Sourcepub fn ok_or<E>(self, err: E) -> Result<bool, E>
pub fn ok_or<E>(self, err: E) -> Result<bool, E>
Transforms the OptionBool into a Result<bool, E>, mapping
SomeX to Ok(X) and None to Err(err).
§Examples
assert_eq!(OptionBool::SomeTrue.ok_or("Ouch"), Ok(true));
assert_eq!(OptionBool::None.ok_or("Ouch"), Err("Ouch"));Sourcepub fn ok_or_else<E, F>(self, err: F) -> Result<bool, E>where
F: FnOnce() -> E,
pub fn ok_or_else<E, F>(self, err: F) -> Result<bool, E>where
F: FnOnce() -> E,
Transforms the OptionBool into a Result<bool, E>, mapping SomeX to
Ok(X) and None to a calculated Err(err).
§Examples
assert_eq!(OptionBool::SomeTrue.ok_or_else(|| something_expensive()), Ok(true));
assert_eq!(OptionBool::None.ok_or_else(|| "Ouch"), Err("Ouch"));Sourcepub fn and<U>(self, optb: Option<U>) -> Option<U>
pub fn and<U>(self, optb: Option<U>) -> Option<U>
Returns None if the option is None, otherwise returns optb.
§Examples
assert_eq!(Some(1), OptionBool::SomeTrue.and(Some(1)));
assert_eq!(None, OptionBool::None.and(Some(1)));
let actual : Option<u8> = None;
assert_eq!(None, OptionBool::SomeTrue.and(actual));Sourcepub fn and_bool(self, optb: OptionBool) -> OptionBool
pub fn and_bool(self, optb: OptionBool) -> OptionBool
Returns None if the option is None, otherwise returns optb.
§Examples
assert_eq!(OptionBool::SomeTrue,
OptionBool::SomeFalse.and_bool(OptionBool::SomeTrue));
assert_eq!(OptionBool::None,
OptionBool::None.and_bool(OptionBool::SomeFalse));
assert_eq!(OptionBool::None,
OptionBool::SomeTrue.and_bool(OptionBool::None));Sourcepub fn and_then<U, F>(self, f: F) -> Option<U>
pub fn and_then<U, F>(self, f: F) -> Option<U>
returns None if the OptionBool is None, otherwise calls f with
the boolean value and returns the result as an Option<U>
Note that there is also and_then_bool(..)
which works similarly, but returns another OptionBool.
§Examples
assert_eq!(None, OptionBool::SomeFalse.and_then(
|x| if x { Some(true) } else { None }));Sourcepub fn and_then_bool<F>(self, f: F) -> OptionBool
pub fn and_then_bool<F>(self, f: F) -> OptionBool
returns None if the OptionBool is None, otherwise calls f with
the boolean value and returns the result as an OptionBool
Note that there is also and_then(..) which works
similarly, but returns an Option<bool>.
§Examples
assert_eq!(OptionBool::None, OptionBool::SomeFalse.and_then_bool(
|x| if x { OptionBool::SomeTrue } else { OptionBool::None }));Sourcepub fn or(self, optb: Option<bool>) -> Option<bool>
pub fn or(self, optb: Option<bool>) -> Option<bool>
Returns this as Option unless this is None, in which case returns
optb.
§Examples
assert_eq!(Some(false), OptionBool::SomeFalse.or(Some(true)));
assert_eq!(Some(true), OptionBool::None.or(Some(true)));
assert_eq!(None, OptionBool::None.or(None));Sourcepub fn or_bool(self, optb: OptionBool) -> OptionBool
pub fn or_bool(self, optb: OptionBool) -> OptionBool
Returns this as Option unless this is None, in which case returns
optb.
§Examples
assert_eq!(OptionBool::SomeFalse,
OptionBool::SomeFalse.or_bool(OptionBool::SomeTrue));
assert_eq!(OptionBool::SomeTrue,
OptionBool::None.or_bool(OptionBool::SomeTrue));
assert_eq!(OptionBool::None,
OptionBool::None.or_bool(OptionBool::None));Sourcepub fn or_else<F>(self, f: F) -> Option<bool>
pub fn or_else<F>(self, f: F) -> Option<bool>
Returns this as Option unless this is None, in which case use the
supplied function to calculate the result.
Note that there is also or_else_bool(..)
which works similarly, but returns another OptionBool.
§Examples
assert_eq!(Some(false), OptionBool::SomeFalse.or_else(|| Some(true)));
assert_eq!(Some(true), OptionBool::None.or_else(|| Some(true)));
assert_eq!(None, OptionBool::None.or_else(|| None));Sourcepub fn or_else_bool<F>(self, f: F) -> OptionBoolwhere
F: FnOnce() -> OptionBool,
pub fn or_else_bool<F>(self, f: F) -> OptionBoolwhere
F: FnOnce() -> OptionBool,
Returns this as Option unless this is None, in which case use the
supplied function to calculate the result.
Note that there is also or_else(..) which works
similarly, but returns an Option<bool>.
§Examples
assert_eq!(OptionBool::SomeFalse,
OptionBool::SomeFalse.or_else_bool(|| OptionBool::SomeTrue));
assert_eq!(OptionBool::SomeTrue,
OptionBool::None.or_else_bool(|| OptionBool::SomeTrue));
assert_eq!(OptionBool::None,
OptionBool::None.or_else_bool(|| OptionBool::None));Sourcepub fn iter(&self) -> Iter<'_, bool>
pub fn iter(&self) -> Iter<'_, bool>
return an iterator over all contained (that is zero or one) values.
§Examples
assert_eq!(None, OptionBool::None.iter().next());
assert_eq!(Some(&true), OptionBool::SomeTrue.iter().next());Sourcepub fn as_slice(self) -> &'static [bool]
pub fn as_slice(self) -> &'static [bool]
return a possibly empty slice with the contained value, if any.
§Examples
assert_eq!(&[true], OptionBool::SomeTrue.as_slice());
assert!(OptionBool::None.as_slice().is_empty());Sourcepub fn take(&mut self) -> Option<bool>
pub fn take(&mut self) -> Option<bool>
Takes the value out of the OptionBool and returns ist as
Option<bool>, changing self to None.
Note that there is also take_bool(..) which
works similarly, but returns an OptionBool.
§Examples
let mut x = OptionBool::some(true);
assert_eq!(Some(true), x.take());
assert_eq!(OptionBool::None, x);Sourcepub fn take_bool(&mut self) -> OptionBool
pub fn take_bool(&mut self) -> OptionBool
Methods from Deref<Target = Option<bool>>§
1.0.0 · Sourcepub fn as_ref(&self) -> Option<&T>
pub fn as_ref(&self) -> Option<&T>
Converts from &Option<T> to Option<&T>.
§Examples
Calculates the length of an Option<String> as an Option<usize>
without moving the String. The map method takes the self argument by value,
consuming the original, so this technique uses as_ref to first take an Option to a
reference to the value inside the original.
let text: Option<String> = Some("Hello, world!".to_string());
// First, cast `Option<String>` to `Option<&String>` with `as_ref`,
// then consume *that* with `map`, leaving `text` on the stack.
let text_length: Option<usize> = text.as_ref().map(|s| s.len());
println!("still can print text: {text:?}");1.75.0 · Sourcepub fn as_slice(&self) -> &[T]
pub fn as_slice(&self) -> &[T]
Returns a slice of the contained value, if any. If this is None, an
empty slice is returned. This can be useful to have a single type of
iterator over an Option or slice.
Note: Should you have an Option<&T> and wish to get a slice of T,
you can unpack it via opt.map_or(&[], std::slice::from_ref).
§Examples
assert_eq!(
[Some(1234).as_slice(), None.as_slice()],
[&[1234][..], &[][..]],
);The inverse of this function is (discounting
borrowing) [_]::first:
for i in [Some(1234_u16), None] {
assert_eq!(i.as_ref(), i.as_slice().first());
}1.40.0 · Sourcepub fn as_deref(&self) -> Option<&<T as Deref>::Target>where
T: Deref,
pub fn as_deref(&self) -> Option<&<T as Deref>::Target>where
T: Deref,
Converts from Option<T> (or &Option<T>) to Option<&T::Target>.
Leaves the original Option in-place, creating a new one with a reference
to the original one, additionally coercing the contents via Deref.
§Examples
let x: Option<String> = Some("hey".to_owned());
assert_eq!(x.as_deref(), Some("hey"));
let x: Option<String> = None;
assert_eq!(x.as_deref(), None);Trait Implementations§
Source§impl Clone for OptionBool
impl Clone for OptionBool
Source§fn clone(&self) -> OptionBool
fn clone(&self) -> OptionBool
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for OptionBool
impl Debug for OptionBool
Source§impl Default for OptionBool
OptionBool defaults to None.
impl Default for OptionBool
OptionBool defaults to None.
Source§fn default() -> OptionBool
fn default() -> OptionBool
Source§impl Deref for OptionBool
We can deref-coerce to Option<bool>
impl Deref for OptionBool
We can deref-coerce to Option<bool>
Source§impl Hash for OptionBool
impl Hash for OptionBool
Source§impl Index<RangeFull> for OptionBool
Index for RangeFull (to slice)
impl Index<RangeFull> for OptionBool
Index for RangeFull (to slice)
Source§impl IntoIterator for OptionBool
IntoIterator works as expected
impl IntoIterator for OptionBool
IntoIterator works as expected
§Examples
let mut pass : bool = false;
for b in OptionBool::SomeTrue { pass = b; }
assert!(pass);
for b in OptionBool::None { assert!(false); }Source§impl Ord for OptionBool
impl Ord for OptionBool
Source§fn cmp(&self, other: &OptionBool) -> Ordering
fn cmp(&self, other: &OptionBool) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<'a> PartialEq<OptionBool> for &'a OptionBool
impl<'a> PartialEq<OptionBool> for &'a OptionBool
Source§impl PartialEq for OptionBool
impl PartialEq for OptionBool
Source§impl PartialOrd for OptionBool
Some(true) > Some(false) > None
impl PartialOrd for OptionBool
Some(true) > Some(false) > None