[][src]Struct abi_stable::std_types::std_error::RBoxError_

#[repr(C)]
pub struct RBoxError_<M = SyncSend> { /* fields omitted */ }

Ffi-safe version of Box<::std::error::Error+'static> whose Send+Syncness is determined by the M type parameter.

It cannot be converted back to Box<::std::error::Error>, requiring wrapping RBoxError_<_> itself to be wrapped in a Box<_>.

Unwrapping a Box<Error+?Send+?Sync+'static> back to RBoxError_<_> does not incurr an allocation.

Methods

impl<M> RBoxError_<M>[src]

pub fn from_fmt<T>(value: T) -> Self where
    T: Display + Debug
[src]

Constructs an RBoxError from an error, storing the Debug and Display messages without storing the error value.

impl<M> RBoxError_<M>[src]

pub fn type_id(&self) -> UTypeId[src]

Returns the UTypeId of the error this wraps.

pub fn heap_address(&self) -> usize[src]

The address of the Box<_> this wraps

pub fn downcast<T: 'static>(self) -> Result<RBox<T>, Self>[src]

Converts this RBoxError_<_> to an RBox<T>.

Errors

This returns Err(self) under the same conditions where DynTrait<_> cannot be unerased.

pub fn downcast_ref<T: 'static>(&self) -> Option<&T>[src]

Converts this &RBoxError_<_> to an Option<&T>.

Errors

This returns Err(self) under the same conditions where DynTrait<_> cannot be unerased.

pub fn downcast_mut<T: 'static>(&mut self) -> Option<&mut T>[src]

Converts this &mut RBoxError_<_> to an Option<&mut T>.

Errors

This returns Err(self) under the same conditions where DynTrait<_> cannot be unerased.

pub fn as_unsync(&self) -> &UnsyncRBoxError[src]

Casts this &RBoxError_<_> to &UnsyncRBoxError.

pub fn into_unsync(self) -> UnsyncRBoxError[src]

Converts this RBoxError_<_> to UnsyncRBoxError.

impl RBoxError_<SyncSend>[src]

pub fn as_send(&self) -> &SendRBoxError[src]

Casts this &RBoxError_<_> to &SendRBoxError.

pub fn into_send(self) -> SendRBoxError[src]

Converts this RBoxError_<_> to SendRBoxError.

impl RBoxError_<SyncSend>[src]

pub fn new<T>(value: T) -> Self where
    T: ErrorTrait + Send + Sync + 'static, 
[src]

Constructs an RBoxError from an error.

impl RBoxError_<UnsyncSend>[src]

pub fn new<T>(value: T) -> Self where
    T: ErrorTrait + Send + 'static, 
[src]

Constructs an RBoxError from an error.

impl RBoxError_<UnsyncUnsend>[src]

pub fn new<T>(value: T) -> Self where
    T: ErrorTrait + 'static, 
[src]

Constructs an RBoxError from an error.

impl RBoxError_<SyncSend>[src]

pub fn from_box(this: Box<dyn ErrorTrait + Send + Sync + 'static>) -> Self[src]

Converts a Box to an RBoxError_<_>.

RBoxError::from_box( RBoxError::into_box( err ) ) is a no-op with respect to the heap address of the RBoxError_<_>.

Behavior

If the contents of the Box<_> is an erased RBoxError_<_> it will be returned directly, otherwise the Box<_> will be converted into an RBoxError_<_> using RBoxError_::new.

pub fn into_box(self) -> Box<dyn ErrorTrait + Send + Sync + 'static>[src]

Converts an RBoxError_<_> to a Box<dyn Error>.

RBoxError::from_box( RBoxError::into_box( err ) ) is a no-op with respect to the heap address of the RBoxError_<_>.

Behavior

If the contents of the RBoxError_<> is an erased Box<dyn Error + ... > it will be returned directly, otherwise the RBoxError<_> will be converted into an Box<dyn Error + ... > using Box::new.

impl RBoxError_<UnsyncSend>[src]

pub fn from_box(this: Box<dyn ErrorTrait + Send + 'static>) -> Self[src]

Converts a Box to an RBoxError_<_>.

RBoxError::from_box( RBoxError::into_box( err ) ) is a no-op with respect to the heap address of the RBoxError_<_>.

Behavior

If the contents of the Box<_> is an erased RBoxError_<_> it will be returned directly, otherwise the Box<_> will be converted into an RBoxError_<_> using RBoxError_::new.

pub fn into_box(self) -> Box<dyn ErrorTrait + Send + 'static>[src]

Converts an RBoxError_<_> to a Box<dyn Error>.

RBoxError::from_box( RBoxError::into_box( err ) ) is a no-op with respect to the heap address of the RBoxError_<_>.

Behavior

If the contents of the RBoxError_<> is an erased Box<dyn Error + ... > it will be returned directly, otherwise the RBoxError<_> will be converted into an Box<dyn Error + ... > using Box::new.

impl RBoxError_<UnsyncUnsend>[src]

pub fn from_box(this: Box<dyn ErrorTrait + 'static>) -> Self[src]

Converts a Box to an RBoxError_<_>.

RBoxError::from_box( RBoxError::into_box( err ) ) is a no-op with respect to the heap address of the RBoxError_<_>.

Behavior

If the contents of the Box<_> is an erased RBoxError_<_> it will be returned directly, otherwise the Box<_> will be converted into an RBoxError_<_> using RBoxError_::new.

pub fn into_box(self) -> Box<dyn ErrorTrait + 'static>[src]

Converts an RBoxError_<_> to a Box<dyn Error>.

RBoxError::from_box( RBoxError::into_box( err ) ) is a no-op with respect to the heap address of the RBoxError_<_>.

Behavior

If the contents of the RBoxError_<> is an erased Box<dyn Error + ... > it will be returned directly, otherwise the RBoxError<_> will be converted into an Box<dyn Error + ... > using Box::new.

Trait Implementations

impl<M> SharedStableAbi for RBoxError_<M> where
    M: __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 = RBoxError_<__StaticEquivalent<M>>

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 From<Box<dyn Error + 'static + Sync + Send>> for RBoxError_<SyncSend>[src]

fn from(
    this: Box<dyn ErrorTrait + Send + Sync + 'static>
) -> RBoxError_<SyncSend>
[src]

Converts a Box to an RBoxError_<_>.

Behavior

If the contents of the Box<_> is an erased RBoxError_<_> it will be returned directly, otherwise the Box<_> will be converted into an RBoxError_<_> using RBoxError_::new.

impl From<Box<dyn Error + 'static + Send>> for RBoxError_<UnsyncSend>[src]

fn from(this: Box<dyn ErrorTrait + Send + 'static>) -> RBoxError_<UnsyncSend>[src]

Converts a Box to an RBoxError_<_>.

Behavior

If the contents of the Box<_> is an erased RBoxError_<_> it will be returned directly, otherwise the Box<_> will be converted into an RBoxError_<_> using RBoxError_::new.

impl From<Box<dyn Error + 'static>> for RBoxError_<UnsyncUnsend>[src]

fn from(this: Box<dyn ErrorTrait + 'static>) -> RBoxError_<UnsyncUnsend>[src]

Converts a Box to an RBoxError_<_>.

Behavior

If the contents of the Box<_> is an erased RBoxError_<_> it will be returned directly, otherwise the Box<_> will be converted into an RBoxError_<_> using RBoxError_::new.

impl<M> Debug for RBoxError_<M>[src]

impl<M> Display for RBoxError_<M>[src]

impl<M> Error for RBoxError_<M>[src]

fn description(&self) -> &str
1.0.0
[src]

This method is soft-deprecated. Read more

fn cause(&self) -> Option<&dyn Error>
1.0.0
[src]

Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

The lower-level cause of this error, if any. Read more

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

The lower-level source of this error, if any. Read more

fn type_id(&self) -> TypeId where
    Self: 'static, 
1.34.0
[src]

Gets the TypeId of self

Auto Trait Implementations

impl<M> Send for RBoxError_<M> where
    M: Send

impl<M> Sync for RBoxError_<M> where
    M: 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<T, U> Into<U> for T where
    U: From<T>, 
[src]

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

impl<T> ToString for T where
    T: Display + ?Sized
[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> Erased for T