pub struct FfiBufferParam {
pub data: FfiFuncParam,
pub size: FfiSizeHint,
pub null_term: FfiNullTermPolicy,
}Expand description
FFI buffer parameter (slice/buffer with size)
Fields§
§data: FfiFuncParam§size: FfiSizeHint§null_term: FfiNullTermPolicyTrait Implementations§
Source§impl Clone for FfiBufferParam
impl Clone for FfiBufferParam
Source§fn clone(&self) -> FfiBufferParam
fn clone(&self) -> FfiBufferParam
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 moreAuto Trait Implementations§
impl Freeze for FfiBufferParam
impl RefUnwindSafe for FfiBufferParam
impl Send for FfiBufferParam
impl Sync for FfiBufferParam
impl Unpin for FfiBufferParam
impl UnsafeUnpin for FfiBufferParam
impl UnwindSafe for FfiBufferParam
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