[][src]Struct tmux_interface::window::Window

pub struct Window {
    pub activity: Duration,
    pub activity_flag: bool,
    pub active: bool,
    pub bell_flag: bool,
    pub bigger: Option<String>,
    pub flags: Option<String>,
    pub format: String,
    pub height: usize,
    pub id: usize,
    pub index: usize,
    pub last_flag: usize,
    pub layout: String,
    pub linked: usize,
    pub name: String,
    pub offset_x: Option<String>,
    pub offset_y: Option<String>,
    pub panes: usize,
    pub silence_flag: usize,
    pub stack_index: usize,
    pub visible_layout: String,
    pub width: usize,
    pub zoomed_flag: usize,
}

Fields

activity: Durationactivity_flag: boolactive: boolbell_flag: boolbigger: Option<String>flags: Option<String>format: Stringheight: usizeid: usizeindex: usizelast_flag: usizelayout: Stringlinked: usizename: Stringoffset_x: Option<String>offset_y: Option<String>panes: usizesilence_flag: usizestack_index: usizevisible_layout: Stringwidth: usizezoomed_flag: usize

Methods

impl Window[src]

pub fn new() -> Window[src]

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

Trait Implementations

impl Clone for Window[src]

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

Performs copy-assignment from source. Read more

impl Default for Window[src]

impl Debug for Window[src]

Auto Trait Implementations

impl Send for Window

impl Sync for Window

Blanket Implementations

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> From<T> for 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]