pub struct FfiCallbackType {
pub name: String,
pub ret_type: String,
pub params: Vec<FfiFuncParam>,
pub calling_conv: FfiCallingConv,
}Expand description
FFI callback type
Fields§
§name: String§ret_type: String§params: Vec<FfiFuncParam>§calling_conv: FfiCallingConvTrait Implementations§
Source§impl Clone for FfiCallbackType
impl Clone for FfiCallbackType
Source§fn clone(&self) -> FfiCallbackType
fn clone(&self) -> FfiCallbackType
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 FfiCallbackType
impl Debug for FfiCallbackType
Auto Trait Implementations§
impl Freeze for FfiCallbackType
impl RefUnwindSafe for FfiCallbackType
impl Send for FfiCallbackType
impl Sync for FfiCallbackType
impl Unpin for FfiCallbackType
impl UnsafeUnpin for FfiCallbackType
impl UnwindSafe for FfiCallbackType
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