[][src]Struct tmux_interface::pane::Pane

pub struct Pane {
    pub active: bool,
    pub at_bottom: bool,
    pub at_left: bool,
    pub at_right: bool,
    pub at_top: bool,
    pub bottom: usize,
    pub current_command: String,
    pub current_path: String,
    pub dead: bool,
    pub dead_status: Option<usize>,
    pub format: bool,
    pub height: usize,
    pub id: usize,
    pub in_mode: usize,
    pub input_off: usize,
    pub index: usize,
    pub left: usize,
    pub mode: Option<usize>,
    pub pid: usize,
    pub pipe: usize,
    pub right: usize,
    pub search_string: Option<usize>,
    pub start_command: Option<usize>,
    pub synchronized: usize,
    pub tabs: String,
    pub title: String,
    pub top: usize,
    pub tty: String,
    pub width: usize,
}

Fields

active: boolat_bottom: boolat_left: boolat_right: boolat_top: boolbottom: usizecurrent_command: Stringcurrent_path: Stringdead: booldead_status: Option<usize>format: boolheight: usizeid: usizein_mode: usizeinput_off: usizeindex: usizeleft: usizemode: Option<usize>pid: usizepipe: usizeright: usizesearch_string: Option<usize>start_command: Option<usize>synchronized: usizetabs: Stringtitle: Stringtop: usizetty: Stringwidth: usize

Methods

impl Pane[src]

pub fn new() -> Pane[src]

pub fn parse(pane_str: &str) -> Result<Pane, TmuxInterfaceError>[src]

Trait Implementations

impl Default for Pane[src]

impl Clone for Pane[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Pane[src]

Auto Trait Implementations

impl Send for Pane

impl Sync for Pane

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]