pub type ssh_log_callback = Option<unsafe extern "C" fn(session: ssh_session, priority: c_int, message: *const c_char, userdata: *mut c_void)>;

Aliased Type§

enum ssh_log_callback {
    None,
    Some(unsafe extern "C" fn(_: *mut ssh_session_struct, _: i32, _: *const i8, _: *mut c_void)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut ssh_session_struct, _: i32, _: *const i8, _: *mut c_void))

Some value of type T.