[][src]Struct accepted::draw::Term

pub struct Term {
    pub height: usize,
    pub width: usize,
    pub cursor: CursorState,
    // some fields omitted
}

Fields

height: usizewidth: usizecursor: CursorState

Methods

impl Term
[src]

pub fn pos(&self, cursor: Cursor) -> Option<Cursor>
[src]

pub fn view(
    &mut self,
    orig: (usize, usize),
    height: usize,
    width: usize
) -> View
[src]

Trait Implementations

impl Default for Term
[src]

impl Debug for Term
[src]

Auto Trait Implementations

impl Send for Term

impl Sync for Term

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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