[−][src]Struct termimad::Area
A rectangular part of the screen
Fields
left: u16top: u16width: u16height: u16Implementations
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 contains(&self, x: u16, y: u16) -> bool[src]
tell whether the char at (x,y) is in the area
pub fn pad(&mut self, dx: u16, dy: u16)[src]
shrink the area
pub fn pad_for_max_width(&mut self, max_width: u16)[src]
symmetrically shrink the area if its width is bigger than max_width
pub fn scrollbar(&self, scroll: i32, content_height: i32) -> Option<(u16, u16)>[src]
Return an option which when filled contains a tupple with the top and bottom of the vertical scrollbar. Return none when the content fits the available space.
Trait Implementations
impl Clone for Area[src]
impl Debug for Area[src]
impl Eq for Area[src]
impl PartialEq<Area> for Area[src]
impl StructuralEq for Area[src]
impl StructuralPartialEq for Area[src]
Auto Trait Implementations
impl RefUnwindSafe for Area[src]
impl Send for Area[src]
impl Sync for Area[src]
impl Unpin for Area[src]
impl UnwindSafe for Area[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,