#[repr(C)]pub struct Struct_variable_list {
pub next_variable: *mut Struct_variable_list,
pub name: *mut oid,
pub name_length: size_t,
pub _type: c_uchar,
pub val: netsnmp_vardata,
pub val_len: size_t,
pub name_loc: [oid; 128],
pub buf: [c_uchar; 40],
pub data: *mut c_void,
pub dataFreeHook: Option<unsafe extern "C" fn(arg1: *mut c_void)>,
pub index: c_int,
}Fields§
§next_variable: *mut Struct_variable_list§name: *mut oid§name_length: size_t§_type: c_uchar§val: netsnmp_vardata§val_len: size_t§name_loc: [oid; 128]§buf: [c_uchar; 40]§data: *mut c_void§dataFreeHook: Option<unsafe extern "C" fn(arg1: *mut c_void)>§index: c_intTrait Implementations§
Source§impl Clone for Struct_variable_list
impl Clone for Struct_variable_list
Source§impl Default for Struct_variable_list
impl Default for Struct_variable_list
impl Copy for Struct_variable_list
Auto Trait Implementations§
impl Freeze for Struct_variable_list
impl RefUnwindSafe for Struct_variable_list
impl !Send for Struct_variable_list
impl !Sync for Struct_variable_list
impl Unpin for Struct_variable_list
impl UnwindSafe for Struct_variable_list
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