Struct cursive::view::SizeCache [] [src]

pub struct SizeCache {
    pub value: usize,
    pub constrained: bool,
}

Cache around a one-dimensional layout result.

This is not a View, but something to help you if you create your own Views.

Fields

Cached value

true if the last size was constrained.

If unconstrained, any request larger than this value would return the same size.

Methods

impl SizeCache
[src]

Creates a new sized cache

Returns true if self is still valid for the given request.

Creates a new bi-dimensional cache.

It will stay valid for the same request, and compatible ones.

A compatible request is one where, for each axis, either:

  • the request is equal to the cached size, or
  • the request is larger than the cached size and the cache is unconstrained

Notes:

  • size must fit inside req.
  • for each dimension, constrained = (size == req)

Trait Implementations

impl Copy for SizeCache
[src]

impl Clone for SizeCache
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SizeCache
[src]

Formats the value using the given formatter.

impl PartialEq for SizeCache
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.