#[repr(C)]pub struct im_function {
pub name: *mut c_char,
pub desc: *mut c_char,
pub flags: im_fn_flags,
pub disp: im_dispatch_fn,
pub argc: c_int,
pub argv: *mut im_arg_desc,
}Fields§
§name: *mut c_char§desc: *mut c_char§flags: im_fn_flags§disp: im_dispatch_fn§argc: c_int§argv: *mut im_arg_descTrait Implementations§
Source§impl Clone for im_function
impl Clone for im_function
Source§fn clone(&self) -> im_function
fn clone(&self) -> im_function
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for im_function
Source§impl Debug for im_function
impl Debug for im_function
impl Eq for im_function
Source§impl PartialEq for im_function
impl PartialEq for im_function
Source§fn eq(&self, other: &im_function) -> bool
fn eq(&self, other: &im_function) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for im_function
Auto Trait Implementations§
impl !Send for im_function
impl !Sync for im_function
impl Freeze for im_function
impl RefUnwindSafe for im_function
impl Unpin for im_function
impl UnsafeUnpin for im_function
impl UnwindSafe for im_function
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