Enum orwith::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> 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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.