Struct tmux_interface::variables::layout::layout_cell::LayoutCell[][src]

pub struct LayoutCell {
    pub x: usize,
    pub y: usize,
    pub x_off: usize,
    pub y_off: usize,
    pub id: Option<usize>,
    pub style: LayoutType,
    pub cells: Option<Vec<LayoutCell>>,
}

Fields

x: usizey: usizex_off: usizey_off: usizeid: Option<usize>style: LayoutTypecells: Option<Vec<LayoutCell>>

Implementations

impl LayoutCell[src]

pub fn new(
    x: usize,
    y: usize,
    x_off: usize,
    y_off: usize,
    id: Option<usize>,
    style: LayoutType,
    cells: Option<Vec<LayoutCell>>
) -> Self
[src]

pub fn fsm(
    &mut self,
    chars: &mut Chars<'_>,
    state: LayoutFSMState
) -> Result<LayoutFSMState, Error>
[src]

Trait Implementations

impl Clone for LayoutCell[src]

impl Debug for LayoutCell[src]

impl Default for LayoutCell[src]

impl FromStr for LayoutCell[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<LayoutCell> for LayoutCell[src]

impl StructuralPartialEq for LayoutCell[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, 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.