pub enum RustWrapperType {
Show 13 variants
Result(Box<WrapperType>, Box<WrapperType>),
Option(Box<WrapperType>),
Vector(Box<WrapperType>),
ArcMutex,
Arc,
Custom,
String,
Primitive,
Trait,
FieldlessEnum,
DataEnum,
Exceptions(Exceptions),
ExceptionTrait,
}
Variants§
Result(Box<WrapperType>, Box<WrapperType>)
Option(Box<WrapperType>)
Vector(Box<WrapperType>)
ArcMutex
Arc
Custom
String
Primitive
Trait
FieldlessEnum
DataEnum
Exceptions(Exceptions)
ExceptionTrait
Trait Implementations§
source§impl Clone for RustWrapperType
impl Clone for RustWrapperType
source§fn clone(&self) -> RustWrapperType
fn clone(&self) -> RustWrapperType
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 moresource§impl Debug for RustWrapperType
impl Debug for RustWrapperType
source§impl Hash for RustWrapperType
impl Hash for RustWrapperType
source§impl PartialEq<RustWrapperType> for RustWrapperType
impl PartialEq<RustWrapperType> for RustWrapperType
source§fn eq(&self, other: &RustWrapperType) -> bool
fn eq(&self, other: &RustWrapperType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for RustWrapperType
impl StructuralEq for RustWrapperType
impl StructuralPartialEq for RustWrapperType
Auto Trait Implementations§
impl RefUnwindSafe for RustWrapperType
impl !Send for RustWrapperType
impl !Sync for RustWrapperType
impl Unpin for RustWrapperType
impl UnwindSafe for RustWrapperType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more