pub enum FfiCallingConv {
C,
StdCall,
FastCall,
ThisCall,
VectorCall,
Win64,
SysV64,
Swift,
Rust,
Custom(String),
}Expand description
FFI calling convention
Variants§
Trait Implementations§
Source§impl Clone for FfiCallingConv
impl Clone for FfiCallingConv
Source§fn clone(&self) -> FfiCallingConv
fn clone(&self) -> FfiCallingConv
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 FfiCallingConv
impl Debug for FfiCallingConv
Source§impl Display for FfiCallingConv
impl Display for FfiCallingConv
Source§impl PartialEq for FfiCallingConv
impl PartialEq for FfiCallingConv
impl Eq for FfiCallingConv
impl StructuralPartialEq for FfiCallingConv
Auto Trait Implementations§
impl Freeze for FfiCallingConv
impl RefUnwindSafe for FfiCallingConv
impl Send for FfiCallingConv
impl Sync for FfiCallingConv
impl Unpin for FfiCallingConv
impl UnsafeUnpin for FfiCallingConv
impl UnwindSafe for FfiCallingConv
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