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>
impl<T, E> ValueResult<T, E>
pub fn new(value: T, err: E) -> Self
pub fn ok(value: T) -> Self
pub fn only_err(err: E) -> Selfwhere
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
Source§impl<T: Clone, E: Clone> Clone for ValueResult<T, E>
impl<T: Clone, E: Clone> Clone for ValueResult<T, E>
Source§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