pub enum CallConv {
Fast,
Cold,
SystemV,
WindowsFastcall,
WasmtimeSystemV,
}Expand description
Calling convention.
Variants§
Fast
Fast calling convention (Cranelift internal)
Cold
Cold calling convention (infrequently called)
SystemV
System V AMD64 ABI
WindowsFastcall
Windows x64 ABI
WasmtimeSystemV
WebAssembly calling convention
Trait Implementations§
impl Eq for CallConv
impl StructuralPartialEq for CallConv
Auto Trait Implementations§
impl Freeze for CallConv
impl RefUnwindSafe for CallConv
impl Send for CallConv
impl Sync for CallConv
impl Unpin for CallConv
impl UnsafeUnpin for CallConv
impl UnwindSafe for CallConv
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