[][src]Struct ttyaskpass::AskPass

pub struct AskPass<B> { /* fields omitted */ }

Methods

impl<B: AsMut<[u8]>> AskPass<B>[src]

pub fn new(buf: B) -> AskPass<B>[src]

pub fn with_star(self, star: char) -> AskPass<B>[src]

pub fn as_buffer(&self) -> &B[src]

pub fn into_buffer(self) -> B[src]

impl<B: AsMut<[u8]>> AskPass<B>[src]

pub fn askpass<'a>(&'a mut self, prompt: &str) -> Result<&'a [u8]>[src]

AskPass

Note that an error (io::ErrorKind::Interrupted) will be returned when the user interrupts with Ctrl-c.

Auto Trait Implementations

impl<B> Send for AskPass<B> where
    B: Send

impl<B> Sync for AskPass<B> where
    B: Sync

impl<B> Unpin for AskPass<B> where
    B: Unpin

impl<B> UnwindSafe for AskPass<B> where
    B: UnwindSafe

impl<B> RefUnwindSafe for AskPass<B> where
    B: RefUnwindSafe

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

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

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self