pub enum WasiPrimitiveType {
Show 13 variants
Bool,
S8,
S16,
S32,
S64,
U8,
U16,
U32,
U64,
F32,
F64,
Char,
String,
}Expand description
原始类型枚举
Variants§
Trait Implementations§
Source§impl Clone for WasiPrimitiveType
impl Clone for WasiPrimitiveType
Source§fn clone(&self) -> WasiPrimitiveType
fn clone(&self) -> WasiPrimitiveType
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 WasiPrimitiveType
impl Debug for WasiPrimitiveType
impl Copy for WasiPrimitiveType
Auto Trait Implementations§
impl Freeze for WasiPrimitiveType
impl RefUnwindSafe for WasiPrimitiveType
impl Send for WasiPrimitiveType
impl Sync for WasiPrimitiveType
impl Unpin for WasiPrimitiveType
impl UnwindSafe for WasiPrimitiveType
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