pub struct ITermFileData {
    pub name: Option<String>,
    pub size: Option<usize>,
    pub width: ITermDimension,
    pub height: ITermDimension,
    pub preserve_aspect_ratio: bool,
    pub inline: bool,
    pub do_not_move_cursor: bool,
    pub data: Vec<u8>,
}

Fields

name: Option<String>

file name

size: Option<usize>

size of the data in bytes; this is used by iterm to show progress while waiting for the rest of the payload

width: ITermDimension

width to render

height: ITermDimension

height to render

preserve_aspect_ratio: bool

if true, preserve aspect ratio when fitting to width/height

inline: bool

if true, attempt to display in the terminal rather than downloading to the users download directory

do_not_move_cursor: bool

if true, do not move the cursor

data: Vec<u8>

The data to transfer

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.