[][src]Struct pinentry::ConfirmationDialog

pub struct ConfirmationDialog<'a> { /* fields omitted */ }

A dialog for requesting a confirmation from the user.

Implementations

impl<'a> ConfirmationDialog<'a>[src]

pub fn with_default_binary() -> Option<Self>[src]

Creates a new ConfirmationDialog using the binary named pinentry.

Returns None if pinentry cannot be found in PATH.

pub fn with_binary<T: AsRef<OsStr>>(binary_name: T) -> Option<Self>[src]

Creates a new ConfirmationDialog using the given path to, or name of, a pinentry binary.

Returns None if:

  • A path was provided that does not exist.
  • A binary name was provided that cannot be found in PATH.
  • The binary is found but is not executable.

pub fn with_title(&mut self, title: &'a str) -> &mut Self[src]

Sets the window title.

When using this feature you should take care that the window is still identifiable as the pinentry.

pub fn with_ok(&mut self, ok: &'a str) -> &mut Self[src]

Sets the text for the button signalling confirmation (the "OK" button).

You should use an underscore in the text only if you know that a modern version of pinentry is used. Modern versions underline the next character after the underscore and use the first such underlined character as a keyboard accelerator. Use a double underscore to escape an underscore.

pub fn with_cancel(&mut self, cancel: &'a str) -> &mut Self[src]

Sets the text for the button signaling cancellation or disagreement (the "Cancel" button).

You should use an underscore in the text only if you know that a modern version of pinentry is used. Modern versions underline the next character after the underscore and use the first such underlined character as a keyboard accelerator. Use a double underscore to escape an underscore.

pub fn with_not_ok(&mut self, not_ok: &'a str) -> &mut Self[src]

Enables the third non-affirmative response button (the "Not OK" button).

This can be used in case three buttons are required (to distinguish between cancellation and disagreement).

You should use an underscore in the text only if you know that a modern version of pinentry is used. Modern versions underline the next character after the underscore and use the first such underlined character as a keyboard accelerator. Use a double underscore to escape an underscore.

pub fn with_timeout(&mut self, timeout: u16) -> &mut Self[src]

Sets the timeout (in seconds) before returning an error.

pub fn confirm(&self, query: &str) -> Result<bool>[src]

Asks for confirmation.

Returns:

  • Ok(true) if the "OK" button is selected.
  • Ok(false) if:
    • the "Cancel" button is selected and the "Not OK" button is disabled.
    • the "Not OK" button is enabled and selected.
  • Err(Error::Cancelled) if the "Cancel" button is selected and the "Not OK" button is enabled.

Auto Trait Implementations

Blanket Implementations

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

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

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

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 = Infallible

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.