[][src]Struct termimage::Options

pub struct Options {
    pub image: (String, PathBuf),
    pub size: (u32, u32),
    pub preserve_aspect: bool,
    pub ansi_out: Option<AnsiOutputFormat>,
}

Representation of the application's all configurable values.

Fields

image: (String, PathBuf)

Image file to display.

This tuple contains the plaintext name (user-friendly) and a normalised path (programmer-friendly).

size: (u32, u32)

Output size. Default: detected from terminal size or no default.

preserve_aspect: bool

Whether to preserve the image's aspect ratio when resizing. Default: true.

ansi_out: Option<AnsiOutputFormat>

Whether to output ANSI escapes and in which format. Default: None on Windooze when not writing to a file.

Implementations

impl Options[src]

pub fn parse() -> Options[src]

Parse env-wide command-line arguments into an Options instance

Trait Implementations

impl Clone for Options[src]

impl Debug for Options[src]

impl Eq for Options[src]

impl Hash for Options[src]

impl PartialEq<Options> for Options[src]

impl StructuralEq for Options[src]

impl StructuralPartialEq for Options[src]

Auto Trait Implementations

impl RefUnwindSafe for Options

impl Send for Options

impl Sync for Options

impl Unpin for Options

impl UnwindSafe for Options

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> Pointable for T[src]

type Init = T

The type for initializers.

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.