pub enum RustWrapperType {
Show 14 variants
Result(Box<WrapperType>, Box<WrapperType>),
Option(Box<WrapperType>),
Vector(Box<WrapperType>),
Ptr(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>)
Ptr(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 duplicate 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 for RustWrapperType
impl PartialEq for RustWrapperType
impl Eq for RustWrapperType
impl StructuralPartialEq for RustWrapperType
Auto Trait Implementations§
impl Freeze for RustWrapperType
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