[][src]Struct acick_util::console::Console

pub struct Console { /* fields omitted */ }

Methods

impl Console[src]

pub fn term(conf: ConsoleConfig) -> Self[src]

pub fn buf(conf: ConsoleConfig) -> Self[src]

pub fn sink(conf: ConsoleConfig) -> Self[src]

pub fn take_buf(self) -> Option<Vec<u8>>[src]

pub fn warn(&mut self, message: &str) -> Result<()>[src]

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

pub fn get_env_or_prompt_and_read(
    &mut self,
    env_name: &str,
    prompt: &str,
    is_password: bool
) -> Result<String>
[src]

pub fn build_pb_count(&self, len: u64) -> ProgressBar[src]

pub fn build_pb_bytes(&self, len: u64) -> ProgressBar[src]

Trait Implementations

impl Debug for Console[src]

impl Write for Console[src]

Auto Trait Implementations

impl RefUnwindSafe for Console

impl Send for Console

impl Sync for Console

impl Unpin for Console

impl UnwindSafe for Console

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.