#[repr(u32)]
pub enum Builtin {
Show 15 variants
Void,
Object,
Bool,
Char,
Byte,
SByte,
Short,
UShort,
Int,
UInt,
Long,
ULong,
Single,
Double,
String,
}
Expand description
Builtin C# types
Variants
Void
void
Object
object
Bool
bool
Char
char
Byte
byte
SByte
sbyte
Short
short
UShort
ushort
Int
int
UInt
uint
Long
long
ULong
ulong
Single
single
Double
double
String
string
Implementations
Trait Implementations
impl Copy for Builtin
impl Eq for Builtin
impl StructuralEq for Builtin
impl StructuralPartialEq for Builtin
Auto Trait Implementations
impl RefUnwindSafe for Builtin
impl Send for Builtin
impl Sync for Builtin
impl Unpin for Builtin
impl UnwindSafe for Builtin
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more