Enum git_prompt::Mode
source · pub enum Mode {
Visible,
Hidden,
Disable,
}
Expand description
The way the user is prompted.
Variants
Visible
Visibly show user input.
Hidden
Do not show user input, suitable for sensitive data.
Disable
Do not prompt the user at all but rather abort with an error. This is useful in conjunction with Options::askpass.
Trait Implementations
impl Copy for Mode
impl Eq for Mode
impl StructuralEq for Mode
impl StructuralPartialEq for Mode
Auto Trait Implementations
impl RefUnwindSafe for Mode
impl Send for Mode
impl Sync for Mode
impl Unpin for Mode
impl UnwindSafe for Mode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more