pub type git_cred_ssh_interactive_callback = Option<extern "C" fn(name: *const c_char, name_len: c_int, instruction: *const c_char, instruction_len: c_int, num_prompts: c_int, prompts: *const LIBSSH2_USERAUTH_KBDINT_PROMPT, responses: *mut LIBSSH2_USERAUTH_KBDINT_RESPONSE, abstrakt: *mut *mut c_void)>;

Aliased Type§

enum git_cred_ssh_interactive_callback {
    None,
    Some(extern "C" fn(_: *const i8, _: i32, _: *const i8, _: i32, _: i32, _: *const LIBSSH2_USERAUTH_KBDINT_PROMPT, _: *mut LIBSSH2_USERAUTH_KBDINT_RESPONSE, _: *mut *mut c_void)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.