[][src]Struct termimad::Area

pub struct Area {
    pub left: u16,
    pub top: u16,
    pub width: u16,
    pub height: u16,
}

a part of a screen

Fields

left: u16top: u16width: u16height: u16

Methods

impl Area[src]

pub fn uninitialized() -> Area[src]

build a new area. You'll need to set the position and size before you can use it

pub fn new(left: u16, top: u16, width: u16, height: u16) -> Area[src]

build a new area.

pub fn full_screen() -> Area[src]

build an area covering the whole terminal

pub fn pad(&mut self, dx: u16, dy: u16)[src]

pub fn scrollbar(&self, scroll: i32, content_height: i32) -> Option<(u16, u16)>[src]

Trait Implementations

impl Eq for Area[src]

impl PartialEq<Area> for Area[src]

impl Debug for Area[src]

Auto Trait Implementations

impl Send for Area

impl Sync for Area

Blanket Implementations

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]