pub enum RustWrapperType {
Result(Box<WrapperType>, Box<WrapperType>),
Option(Box<WrapperType>),
Vector(Box<WrapperType>),
Shared,
Custom,
String,
Primitive,
Trait,
FieldlessEnum,
DataEnum,
Exceptions(Exceptions),
ExceptionTrait,
}
Variants§
Result(Box<WrapperType>, Box<WrapperType>)
Option(Box<WrapperType>)
Vector(Box<WrapperType>)
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 ==
.