Struct libssh_rs::InteractiveAuthInfo [−][src]
pub struct InteractiveAuthInfo {
pub instruction: String,
pub name: String,
pub prompts: Vec<InteractiveAuthPrompt>,
}
Expand description
Represents the overall set of instructions in keyboard-interactive auth
Fields
instruction: String
An overall set of instructions. May be empty.
name: String
The session name. May be empty.
prompts: Vec<InteractiveAuthPrompt>
The set of prompts for information that need answers before authentication can succeed.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for InteractiveAuthInfo
impl Send for InteractiveAuthInfo
impl Sync for InteractiveAuthInfo
impl Unpin for InteractiveAuthInfo
impl UnwindSafe for InteractiveAuthInfo
Blanket Implementations
Mutably borrows from an owned value. Read more