Enum broot::kitty::TransmissionMedium[][src]

pub enum TransmissionMedium {
    TempFile,
    Chunks,
}

How to send the image to kitty

Note that I didn’t test yet the named shared memory solution offered by kitty.

Variants

TempFile

write a temp file, then give its path to kitty in the payload of the escape sequence. It’s quite fast on SSD but a big downside is that it doesn’t work if you’re distant

Chunks

send the whole rgb or rgba data, encoded in base64, in the payloads of several escape sequence (each one containing at most 4096 bytes). Works if broot runs on remote.

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,