Struct git_credentials::helper::Outcome
source · pub struct Outcome {
pub username: Option<String>,
pub password: Option<String>,
pub quit: bool,
pub next: NextAction,
}
Expand description
The outcome of the credentials helper invocation.
Fields§
§username: Option<String>
The username to use in the identity, if set.
password: Option<String>
The password to use in the identity, if set.
quit: bool
If set, the helper asked to stop the entire process, whether the identity is complete or not.
next: NextAction
A handle to the action to perform next in another call to helper::invoke()
.