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
§impl<T, E> ValueResult<T, E>
impl<T, E> ValueResult<T, E>
pub fn new(value: T, err: E) -> ValueResult<T, E>
pub fn ok(value: T) -> ValueResult<T, E>
pub fn only_err(err: E) -> ValueResult<T, E>where
T: Default,
pub fn zip_val<U>(self, other: U) -> ValueResult<(T, U), E>
pub fn map<U>(self, f: impl FnOnce(T) -> U) -> ValueResult<U, E>
pub fn map_err<E2>(self, f: impl FnOnce(E) -> E2) -> ValueResult<T, E2>
pub fn result(self) -> Result<T, E>
Trait Implementations
§impl<T, E> Clone for ValueResult<T, E>
impl<T, E> Clone for ValueResult<T, E>
§fn clone(&self) -> ValueResult<T, E>
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<T, E> Debug for ValueResult<T, E>
impl<T, E> Debug for ValueResult<T, E>
§impl<T, E> Default for ValueResult<T, E>where
T: Default,
impl<T, E> Default for ValueResult<T, E>where
T: Default,
§fn default() -> ValueResult<T, E>
fn default() -> ValueResult<T, E>
Returns the “default value” for a type. Read more
§impl<T, E> From<Result<T, E>> for ValueResult<T, E>where
T: Default,
impl<T, E> From<Result<T, E>> for ValueResult<T, E>where
T: Default,
§fn from(result: Result<T, E>) -> ValueResult<T, E>
fn from(result: Result<T, E>) -> ValueResult<T, E>
Converts to this type from the input type.