[][src]Struct prototty_app::ViewContext

pub struct ViewContext<C = ColModifyIdentity> where
    C: ColModify
{ pub offset: Coord, pub depth: i8, pub col_modify: C, pub size: Size, }

Fields

offset: Coorddepth: i8col_modify: Csize: Size

Methods

impl ViewContext<ColModifyIdentity>[src]

impl<C> ViewContext<C> where
    C: ColModify
[src]

pub fn new(
    offset: Coord,
    depth: i8,
    col_modify: C,
    size: Size
) -> ViewContext<C>
[src]

pub fn add_offset(self, offset_delta: Coord) -> ViewContext<C>[src]

pub fn add_depth(self, depth_delta: i8) -> ViewContext<C>[src]

pub fn constrain_size_to(self, size: Size) -> ViewContext<C>[src]

pub fn constrain_size_by(self, size: Size) -> ViewContext<C>[src]

pub fn compose_col_modify<Inner>(
    self,
    inner: Inner
) -> ViewContext<ColModifyCompose<Inner, C>> where
    Inner: ColModify
[src]

Trait Implementations

impl<C> Clone for ViewContext<C> where
    C: ColModify + Clone
[src]

impl<C> Copy for ViewContext<C> where
    C: ColModify + Copy
[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for ViewContext<C> where
    C: RefUnwindSafe

impl<C> Send for ViewContext<C> where
    C: Send

impl<C> Sync for ViewContext<C> where
    C: Sync

impl<C> Unpin for ViewContext<C> where
    C: Unpin

impl<C> UnwindSafe for ViewContext<C> where
    C: UnwindSafe

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.