Type Alias ExpandResult

Source
pub type ExpandResult<T> = ValueResult<T, ExpandError>;

Aliased Type§

struct ExpandResult<T> {
    pub value: T,
    pub err: Option<ExpandError>,
}

Fields§

§value: T§err: Option<ExpandError>

Implementations

Source§

impl<T, E> ValueResult<T, E>

Source

pub fn new(value: T, err: E) -> Self

Source

pub fn ok(value: T) -> Self

Source

pub fn only_err(err: E) -> Self
where T: Default,

Source

pub fn zip_val<U>(self, other: U) -> ValueResult<(T, U), E>

Source

pub fn map<U>(self, f: impl FnOnce(T) -> U) -> ValueResult<U, E>

Source

pub fn map_err<E2>(self, f: impl FnOnce(E) -> E2) -> ValueResult<T, E2>

Source

pub fn result(self) -> Result<T, E>

Trait Implementations

Source§

impl<T: Clone, E: Clone> Clone for ValueResult<T, E>

Source§

fn clone(&self) -> ValueResult<T, E>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug, E: Debug> Debug for ValueResult<T, E>

Source§

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

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

impl<T: Default, E> Default for ValueResult<T, E>

Source§

fn default() -> Self

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

impl<T: Default, E> From<Result<T, E>> for ValueResult<T, E>

Source§

fn from(result: Result<T, E>) -> Self

Converts to this type from the input type.
Source§

impl<T: PartialEq, E: PartialEq> PartialEq for ValueResult<T, E>

Source§

fn eq(&self, other: &ValueResult<T, E>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: Eq, E: Eq> Eq for ValueResult<T, E>

Source§

impl<T, E> StructuralPartialEq for ValueResult<T, E>