#[repr(i64)]pub enum Opcode {
Show 24 variants
Null = -1,
Bool = -2,
Nat = -3,
Int = -4,
Nat8 = -5,
Nat16 = -6,
Nat32 = -7,
Nat64 = -8,
Int8 = -9,
Int16 = -10,
Int32 = -11,
Int64 = -12,
Float32 = -13,
Float64 = -14,
Text = -15,
Reserved = -16,
Empty = -17,
Opt = -18,
Vec = -19,
Record = -20,
Variant = -21,
Func = -22,
Service = -23,
Principal = -24,
}
Variants§
Null = -1
Bool = -2
Nat = -3
Int = -4
Nat8 = -5
Nat16 = -6
Nat32 = -7
Nat64 = -8
Int8 = -9
Int16 = -10
Int32 = -11
Int64 = -12
Float32 = -13
Float64 = -14
Text = -15
Reserved = -16
Empty = -17
Opt = -18
Vec = -19
Record = -20
Variant = -21
Func = -22
Service = -23
Principal = -24
Trait Implementations§
impl StructuralPartialEq for Opcode
Auto Trait Implementations§
impl Freeze for Opcode
impl RefUnwindSafe for Opcode
impl Send for Opcode
impl Sync for Opcode
impl Unpin for Opcode
impl UnwindSafe for Opcode
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