[][src]Struct cksfv::Config

pub struct Config { /* fields omitted */ }

Methods

impl Config[src]

pub fn stdout(&self) -> &Output[src]

pub fn stderr(&self) -> &Output[src]

pub fn quiet(&self) -> &bool[src]

pub fn print_basename(&self) -> &bool[src]

pub fn ignore_case(&self) -> &bool[src]

pub fn force_slashes(&self) -> &bool[src]

impl Config[src]

pub fn stdout_mut(&mut self) -> &mut Output[src]

pub fn stderr_mut(&mut self) -> &mut Output[src]

pub fn quiet_mut(&mut self) -> &mut bool[src]

pub fn print_basename_mut(&mut self) -> &mut bool[src]

pub fn ignore_case_mut(&mut self) -> &mut bool[src]

pub fn force_slashes_mut(&mut self) -> &mut bool[src]

impl Config[src]

pub fn set_stdout(&mut self, val: Output) -> &mut Self[src]

pub fn set_stderr(&mut self, val: Output) -> &mut Self[src]

pub fn set_quiet(&mut self, val: bool) -> &mut Self[src]

pub fn set_print_basename(&mut self, val: bool) -> &mut Self[src]

pub fn set_ignore_case(&mut self, val: bool) -> &mut Self[src]

pub fn set_force_slashes(&mut self, val: bool) -> &mut Self[src]

impl Config[src]

pub fn new() -> Self[src]

Create a new Cksfv instance with default arguments.

pub fn with_stdout(self, stdout: Output) -> Self[src]

pub fn with_stderr(self, stderr: Output) -> Self[src]

pub fn with_print_basenamet(self, print_basename: bool) -> Self[src]

pub fn extract_stdout(self) -> Output[src]

Consume the configuration instance and get the stdout field.

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl Default for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.