[][src]Struct dialog::Password

pub struct Password { /* fields omitted */ }

A dialog box with a password input field.

This dialog box displays a text and a password input field. It returns the password entered by the user or None if the user cancelled the dialog.

Example

use dialog::DialogBox;

let password = dialog::Password::new("Please enter a new password")
    .title("Password")
    .show()
    .expect("Could not display dialog box");
match password {
    Some(password) => println!("Your new password is: {}", password),
    None => println!("You do not want to have a password."),
};

Methods

impl Password[src]

pub fn new(text: impl Into<String>) -> Password[src]

Creates a new password dialog box with the given text.

pub fn title(&mut self, title: impl Into<String>) -> &mut Password[src]

Sets the title of this password dialog box.

This method returns a reference to self to enable chaining.

Trait Implementations

impl DialogBox for Password[src]

type Output = Option<String>

The type of the data returned by the dialog box.

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]