[][src]Struct mdcat::TerminalSize

pub struct TerminalSize {
    pub columns: usize,
    pub rows: usize,
    pub pixels: Option<PixelSize>,
}

The size of a terminal.

Fields

columns: usize

The width of the terminal, in characters aka columns.

rows: usize

The height of the terminal, in lines.

pixels: Option<PixelSize>

The size in pixels, if available.

Implementations

impl TerminalSize[src]

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

Get terminal size from $COLUMNS and $LINES.

Do not assume any knowledge about window size.

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

Detect the terminal size by querying the underlying terminal.

On unix this issues a ioctl to the controlling terminal.

On Windows this uses the term_size crate which does some magic windows API calls.

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

Detect the terminal size.

Get the terminal size from the underlying TTY, and fallback to $COLUMNS and $LINES.

Trait Implementations

impl Clone for TerminalSize[src]

impl Copy for TerminalSize[src]

impl Debug for TerminalSize[src]

impl Default for TerminalSize[src]

impl PartialEq<TerminalSize> for TerminalSize[src]

impl StructuralPartialEq for TerminalSize[src]

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