Struct grpcio_sys::grpc_arg_pointer_vtable
source · #[repr(C)]pub struct grpc_arg_pointer_vtable {
pub copy: Option<unsafe extern "C" fn(p: *mut c_void) -> *mut c_void>,
pub destroy: Option<unsafe extern "C" fn(p: *mut c_void)>,
pub cmp: Option<unsafe extern "C" fn(p: *mut c_void, q: *mut c_void) -> c_int>,
}
Fields
copy: Option<unsafe extern "C" fn(p: *mut c_void) -> *mut c_void>
destroy: Option<unsafe extern "C" fn(p: *mut c_void)>
cmp: Option<unsafe extern "C" fn(p: *mut c_void, q: *mut c_void) -> c_int>
Trait Implementations
sourceimpl Clone for grpc_arg_pointer_vtable
impl Clone for grpc_arg_pointer_vtable
sourcefn clone(&self) -> grpc_arg_pointer_vtable
fn clone(&self) -> grpc_arg_pointer_vtable
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for grpc_arg_pointer_vtable
impl Debug for grpc_arg_pointer_vtable
impl Copy for grpc_arg_pointer_vtable
Auto Trait Implementations
impl RefUnwindSafe for grpc_arg_pointer_vtable
impl Send for grpc_arg_pointer_vtable
impl Sync for grpc_arg_pointer_vtable
impl Unpin for grpc_arg_pointer_vtable
impl UnwindSafe for grpc_arg_pointer_vtable
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more