pub type ssh_callback_data = Option<unsafe extern "C" fn(data: *const c_void, len: usize, user: *mut c_void) -> usize>;

Aliased Type§

enum ssh_callback_data {
    None,
    Some(unsafe extern "C" fn(_: *const c_void, _: usize, _: *mut c_void) -> usize),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *const c_void, _: usize, _: *mut c_void) -> usize)

Some value of type T.