Orwith

Enum Orwith 

Source
pub enum Orwith<T> {
    Neither,
    With(T, T),
    Or(T),
}
Expand description

Represents one, another, or two values. (Addtionally, as an edgecase, the enum contains a Neither value.)

§Example

use orwith::Orwith;
 
let x:Option<&str> = Some("Hello!");
let y:Option<&str> = Some("Goodbye!");
 
let v = Orwith::orwith(x, y); // Orwith::With(...)

Variants§

§

Neither

Neither option was chosen or both options were refused.

§

With(T, T)

Both options were preferred.

§

Or(T)

Only one option was preferred or the option not chosen was refused.

Implementations§

Source§

impl<T> Orwith<T>

Source

pub fn orwith(x: Option<T>, y: Option<T>) -> Self

Takes two options and decides which variant to choose based on the presence of values.

Source

pub fn first_mut(&mut self) -> Option<&mut T>

Returns a mutable reference to the first value.

Source

pub fn last_mut(&mut self) -> Option<&mut T>

Returns a mutable reference to the last value.

Source

pub fn to_first(self) -> Option<T>

Returns the first item and consumes this Orwith value.

Source

pub fn to_last(self) -> Option<T>

Returns the last item and consumes this Orwith value.

Source

pub fn to_pair(self) -> (Option<T>, Option<T>)

Returns the first and last items and consumes this Orwith value.

Source

pub fn first(&self) -> Option<&T>

Returns an immutable reference to the first value.

Source

pub fn last(&self) -> Option<&T>

Returns an immutable reference to the last value.

Trait Implementations§

Source§

impl<T: Debug> Debug for Orwith<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> Default for Orwith<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T> From<(Option<T>, Option<T>)> for Orwith<T>

Source§

fn from(v: (Option<T>, Option<T>)) -> Self

Converts to this type from the input type.
Source§

impl<T> Into<(Option<T>, Option<T>)> for Orwith<T>

Source§

fn into(self) -> (Option<T>, Option<T>)

Converts this type into the (usually inferred) input type.

Auto Trait Implementations§

§

impl<T> Freeze for Orwith<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Orwith<T>
where T: RefUnwindSafe,

§

impl<T> Send for Orwith<T>
where T: Send,

§

impl<T> Sync for Orwith<T>
where T: Sync,

§

impl<T> Unpin for Orwith<T>
where T: Unpin,

§

impl<T> UnwindSafe for Orwith<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
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.