[][src]Struct prototty_render::ViewContext

pub struct ViewContext<C: ColModify = ColModifyIdentity> {
    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]

pub fn default_with_size(size: Size) -> Self[src]

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

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

pub fn add_offset(self, offset_delta: Coord) -> Self[src]

pub fn add_depth(self, depth_delta: i8) -> Self[src]

pub fn constrain_size_to(self, size: Size) -> Self[src]

pub fn constrain_size_by(self, size: Size) -> Self[src]

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

Trait Implementations

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

impl<C: Copy + ColModify> Copy for ViewContext<C>[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.