[][src]Enum abi_stable::std_types::result::RResult

#[repr(u8)]
pub enum RResult<T, E> { ROk(T), RErr(E), }

Ffi-safe equivalent of Result<T,E>.

Variants

ROk(T)RErr(E)

Methods

impl<T, E> RResult<T, E>[src]

pub fn as_ref(&self) -> RResult<&T, &E>[src]

Converts from RResult<T,E> to RResult<&T,&E>.

Example


assert_eq!(ROk::<u32,u32>(10).as_ref(),ROk(&10));
assert_eq!(RErr::<u32,u32>(5).as_ref(),RErr(&5));

pub fn as_mut(&mut self) -> RResult<&mut T, &mut E>[src]

Converts from RResult<T,E> to RResult<&mut T,&mut E>.

Example


assert_eq!(ROk::<u32,u32>(10).as_mut(),ROk(&mut 10));
assert_eq!(RErr::<u32,u32>(5).as_mut(),RErr(&mut 5));

pub fn is_rok(&self) -> bool[src]

Returns whether self is an ROk

Example


assert_eq!(ROk::<u32,u32>(10).is_rok(),true);
assert_eq!(RErr::<u32,u32>(5).is_rok(),false);

pub fn is_rerr(&self) -> bool[src]

Returns whether self is an RErr

Example


assert_eq!(ROk::<u32,u32>(10).is_rerr(),false);
assert_eq!(RErr::<u32,u32>(5).is_rerr(),true);

pub fn into_result(self) -> Result<T, E>[src]

Converts from RResult<T,E> to Result<T,E>.

Example


assert_eq!(ROk::<u32,u32>(10).into_result(),Ok (10));
assert_eq!(RErr::<u32,u32>(5).into_result(),Err(5));

pub fn map<U, F>(self, op: F) -> RResult<U, E> where
    F: FnOnce(T) -> U, 
[src]

Converts the RResult<T,E> to a RResult<U,E> by transforming the value in ROk using the op closure.

Example


assert_eq!(ROk::<u32,u32>(10).map(|x| x*3 ),ROk(30));
assert_eq!(RErr::<u32,u32>(5).map(|x| x/2 ),RErr(5));

pub fn map_err<F, O>(self, op: O) -> RResult<T, F> where
    O: FnOnce(E) -> F, 
[src]

Converts the RResult<T,E> to a RResult<U,F> by transforming the value in RErr using the op closure.

Example


assert_eq!(ROk::<u32,u32>(10).map_err(|x| x*3 ),ROk(10));
assert_eq!(RErr::<u32,u32>(5).map_err(|x| x/2 ),RErr(2));

pub fn map_or_else<U, M, F>(self, with_err: F, with_ok: M) -> U where
    M: FnOnce(T) -> U,
    F: FnOnce(E) -> U, 
[src]

Converts the RResult<T,E> to a U by transforming the value in ROk using the with_ok closure, otherwise transforming the value in RErr using the with_err closure,

Example


assert_eq!(ROk::<u32,u32>(10).map_or_else(|_|77 ,|x| x*3 ),30);
assert_eq!(RErr::<u32,u32>(5).map_or_else(|e|e*4,|x| x/2 ),20);

pub fn and_then<U, F>(self, op: F) -> RResult<U, E> where
    F: FnOnce(T) -> RResult<U, E>, 
[src]

Calls the op closure with the value of ROk, otherwise returning the RErr unmodified.

Example


assert_eq!(
    ROk::<u32,u32>(10).and_then(|x| ROk ::<u32,u32>(x*3) ),
    ROk (30),
);
assert_eq!(
    ROk::<u32,u32>(10).and_then(|x| RErr::<u32,u32>(x*3)),
    RErr(30),
);
assert_eq!(
    RErr::<u32,u32>(5).and_then(|x| ROk ::<u32,u32>(x/2) ),
    RErr(5),
);
assert_eq!(
    RErr::<u32,u32>(5).and_then(|x| RErr::<u32,u32>(x/2) ),
    RErr(5),
);

pub fn or_else<F, O>(self, op: O) -> RResult<T, F> where
    O: FnOnce(E) -> RResult<T, F>, 
[src]

Calls the op closure with the value of RErr, otherwise returning the ROk unmodified.

Example


assert_eq!(ROk::<u32,u32>(10).or_else(|e| ROk ::<u32,u32>(e*3) ) ,ROk(10));
assert_eq!(ROk::<u32,u32>(10).or_else(|e| RErr::<u32,u32>(e*3)) ,ROk(10));
assert_eq!(RErr::<u32,u32>(5).or_else(|e| ROk ::<u32,u32>(e/2) ),ROk (2));
assert_eq!(RErr::<u32,u32>(5).or_else(|e| RErr::<u32,u32>(e/2) ),RErr(2));

pub fn unwrap(self) -> T where
    E: Debug
[src]

Unwraps self, returning the value in Ok.

Panic

Panics if self is an Err(_) with an error message using Es Debug implementation.

pub fn expect(self, message: &str) -> T where
    E: Debug
[src]

Unwraps self, returning the value in Ok.

Panic

Panics if self is an Err(_) with an error message using Es Debug implementation, as well as message.

pub fn unwrap_err(self) -> E where
    T: Debug
[src]

Unwraps self, returning the value in Err.

Panic

Panics if self is an Ok(_) with an error message using Ts Debug implementation.

pub fn expect_err(self, message: &str) -> E where
    T: Debug
[src]

Unwraps self, returning the value in Err.

Panic

Panics if self is an Ok(_) with an error message using Ts Debug implementation, as well as message.

pub fn unwrap_or(self, optb: T) -> T[src]

Returns the value in the RResult<T,E>,or def if self is RErr.

pub fn unwrap_or_else<F>(self, op: F) -> T where
    F: FnOnce(E) -> T, 
[src]

Returns the value in the RResult<T,E>, or calls def with the error in RErr.

Example


assert_eq!(ROk::<u32,u32>(10).unwrap_or_else(|e| e*3 ),10);
assert_eq!(RErr::<u32,u32>(5).unwrap_or_else(|e| e/2 ),2);

pub fn unwrap_or_default(self) -> T where
    T: Default
[src]

Returns the value in the RResult<T,E>, or returns T::default() it self is an RErr.

Example


assert_eq!(ROk::<u32,u32>(10).unwrap_or_default(),10);
assert_eq!(RErr::<u32,u32>(5).unwrap_or_default(),0);

pub fn ok(self) -> ROption<T>[src]

Converts from RResult<T, E> to ROption,ROk maps to RSome,RErr maps to RNone.

Example


assert_eq!(ROk::<u32,u32>(10).ok(),RSome(10));
assert_eq!(RErr::<u32,u32>(5).ok(),RNone);

pub fn err(self) -> ROption<E>[src]

Converts from RResult<T, E> to ROption,ROk maps to RNone,RErr maps to RSome.

Example


assert_eq!(ROk::<u32,u32>(10).err(),RNone);
assert_eq!(RErr::<u32,u32>(5).err(),RSome(5));

Trait Implementations

impl<T, E> IntoReprRust for RResult<T, E>[src]

type ReprRust = Result<T, E>

impl<T, E> SharedStableAbi for RResult<T, E> where
    E: __StableAbi,
    T: __StableAbi
[src]

type IsNonZeroType = False

Whether this type has a single invalid bit-pattern. Read more

type Kind = __ValueKind

The kind of abi stability of this type,there are 2: Read more

type StaticEquivalent = RResult<__StaticEquivalent<T>, __StaticEquivalent<E>>

A version of the type which does not borrow anything, used to create a UTypeId for doing layout checking. Read more

const S_ABI_INFO: &'static AbiInfoWrapper[src]

The layout of the type,derived from Self::LAYOUT and associated types.

impl<T: PartialEq, E: PartialEq> PartialEq<RResult<T, E>> for RResult<T, E>[src]

impl<T, E> From<Result<T, E>> for RResult<T, E>[src]

impl<T: Clone, E: Clone> Clone for RResult<T, E>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Ord, E: Ord> Ord for RResult<T, E>[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<T: Eq, E: Eq> Eq for RResult<T, E>[src]

impl<T, E> Into<Result<T, E>> for RResult<T, E>[src]

impl<T: Copy, E: Copy> Copy for RResult<T, E>[src]

impl<T: PartialOrd, E: PartialOrd> PartialOrd<RResult<T, E>> for RResult<T, E>[src]

impl<T: Debug, E: Debug> Debug for RResult<T, E>[src]

impl<T: Hash, E: Hash> Hash for RResult<T, E>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<'de, T, E> Deserialize<'de> for RResult<T, E> where
    T: Deserialize<'de>,
    E: Deserialize<'de>, 
[src]

impl<T, E> Serialize for RResult<T, E> where
    T: Serialize,
    E: Serialize
[src]

Auto Trait Implementations

impl<T, E> Send for RResult<T, E> where
    E: Send,
    T: Send

impl<T, E> Sync for RResult<T, E> where
    E: Sync,
    T: Sync

Blanket Implementations

impl<This> StableAbi for This where
    This: SharedStableAbi<Kind = ValueKind>, 
[src]

impl<T> MakeGetAbiInfo<StableAbi_Bound> for T where
    T: StableAbi
[src]

impl<T> MakeGetAbiInfo<SharedStableAbi_Bound> for T where
    T: SharedStableAbi
[src]

impl<T> MakeGetAbiInfo<UnsafeOpaqueField_Bound> for T[src]

impl<T> GetUTID<True> for T where
    T: 'static, 
[src]

impl<T> GetUTID<False> for T[src]

impl<'a, T> BorrowOwned<'a> for T where
    T: 'a + Clone
[src]

type ROwned = T

type RBorrowed = &'a T

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> TypeIdentity for T where
    T: ?Sized
[src]

type Type = T

The same type as Self. Read more

fn into_type_val(self) -> Self::Type where
    Self::Type: Sized
[src]

Converts a value back to the original type.

fn into_type_ref(&self) -> &Self::Type[src]

Converts a reference back to the original type.

fn into_type_mut(&mut self) -> &mut Self::Type[src]

Converts a mutable reference back to the original type.

fn into_type_box(self: Box<Self>) -> Box<Self::Type>[src]

Converts a box back to the original type.

fn into_type_arc(this: Arc<Self>) -> Arc<Self::Type>[src]

Converts an Arc back to the original type.

fn into_type_rc(this: Rc<Self>) -> Rc<Self::Type>[src]

Converts an Rc back to the original type.

fn from_type_val(this: Self::Type) -> Self where
    Self::Type: Sized
[src]

Converts a value back to the original type.

fn from_type_ref(this: &Self::Type) -> &Self[src]

Converts a reference back to the original type.

fn from_type_mut(this: &mut Self::Type) -> &mut Self[src]

Converts a mutable reference back to the original type.

fn from_type_box(this: Box<Self::Type>) -> Box<Self>[src]

Converts a box back to the original type.

fn from_type_arc(this: Arc<Self::Type>) -> Arc<Self>[src]

Converts an Arc back to the original type.

fn from_type_rc(this: Rc<Self::Type>) -> Rc<Self>[src]

Converts an Rc back to the original type.

impl<T> SelfOps for T where
    T: ?Sized
[src]

const T: PhantomData<fn() -> Self>[src]

Represents Self by using a VariantPhantom, using the syntax Type::T to pass it in methods with _:VariantPhantom<T> parameters. Read more

const T_D: PhantomData<Self>[src]

Represents Self by using a VariantDropPhantom,for specialized cases. Read more

fn assert_ty(self, _other: PhantomData<fn() -> Self>) -> Self[src]

Asserts that other is the same type as self.

fn assert_ty_ref(&self, _other: PhantomData<fn() -> Self>) -> &Self[src]

Asserts that other is the same type as self.

fn assert_ty_mut(&mut self, _other: PhantomData<fn() -> Self>) -> &mut Self[src]

Asserts that other is the same type as self.

fn ty_(&self) -> PhantomData<fn() -> Self>[src]

Equivalent to SelfOps::T,as a method. Read more

fn ty_d(&self) -> PhantomData<Self>[src]

Equivalent to [Self::ty_],for specialized cases. Read more

fn ty_inv(&self) -> PhantomData<fn(Self) -> Self>[src]

Equivalent to [Self::ty_] with an invariant type.

fn ty_inv_ref(&self) -> PhantomData<Cell<&Self>>[src]

Equivalent to [Self::ty_] with an invariant lifetime.

fn eq_id(&self, other: &Self) -> bool[src]

Identity comparison to another value of the same type. Read more

fn piped<F, U>(self, f: F) -> U where
    F: FnOnce(Self) -> U, 
[src]

Emulates the pipeline operator,allowing method syntax in more places. Read more

fn piped_ref<'a, F, U>(&'a self, f: F) -> U where
    F: FnOnce(&'a Self) -> U, 
[src]

The same as piped except that the function takes &Self Useful for functions that take &Self instead of Self. Read more

fn piped_mut<'a, F, U>(&'a mut self, f: F) -> U where
    F: FnOnce(&'a mut Self) -> U, 
[src]

The same as piped except that the function takes &mut Self. Useful for functions that take &mut Self instead of Self. Read more

fn mutated<F>(self, f: F) -> Self where
    F: FnOnce(&mut Self), 
[src]

Mutates self using a closure taking self by mutable reference, passing it along the method chain. Read more

fn observe<F>(self, f: F) -> Self where
    F: FnOnce(&Self), 
[src]

Observes the value of self passing it along unmodified. Useful in a long method chain. Read more

fn into_<T>(self, PhantomData<fn() -> T>) -> T where
    Self: Into<T>, 
[src]

Performs a conversion using Into. Read more

fn as_ref_<T>(&self) -> &T where
    Self: AsRef<T>,
    T: ?Sized
[src]

Performs a reference to reference conversion using AsRef, using the turbofish .as_ref_::<_>() syntax. Read more

fn as_mut_<T>(&mut self) -> &mut T where
    Self: AsMut<T>,
    T: ?Sized
[src]

Performs a mutable reference to mutable reference conversion using AsMut, using the turbofish .as_mut_::<_>() syntax. Read more

fn drop_(self)[src]

Drops self using method notation. Alternative to std::mem::drop. Read more

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The error type returned when the conversion fails.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T