pub(crate) struct TokenDashboardViewport {
columns: NonZeroU16,
rows: NonZeroU16,
}Expand description
One validated terminal viewport shared by loading, layout, and serialization.
Fields§
§columns: NonZeroU16Available terminal columns.
rows: NonZeroU16Available terminal rows.
Implementations§
Source§impl TokenDashboardViewport
impl TokenDashboardViewport
Sourceconst fn fits_overview(self) -> bool
const fn fits_overview(self) -> bool
Return whether the full overview fits this viewport.
Sourceconst fn fits_trend(self) -> bool
const fn fits_trend(self) -> bool
Return whether the full trend view fits this viewport.
Sourcefn overview_width(self) -> u16
fn overview_width(self) -> u16
Return the bounded overview render width.
Sourcefn trend_width(self) -> u16
fn trend_width(self) -> u16
Return the bounded trend render width.
Trait Implementations§
Source§impl Clone for TokenDashboardViewport
impl Clone for TokenDashboardViewport
Source§fn clone(&self) -> TokenDashboardViewport
fn clone(&self) -> TokenDashboardViewport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TokenDashboardViewport
Source§impl Debug for TokenDashboardViewport
impl Debug for TokenDashboardViewport
impl Eq for TokenDashboardViewport
Source§impl PartialEq for TokenDashboardViewport
impl PartialEq for TokenDashboardViewport
Source§fn eq(&self, other: &TokenDashboardViewport) -> bool
fn eq(&self, other: &TokenDashboardViewport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TokenDashboardViewport
Auto Trait Implementations§
impl Freeze for TokenDashboardViewport
impl RefUnwindSafe for TokenDashboardViewport
impl Send for TokenDashboardViewport
impl Sync for TokenDashboardViewport
impl Unpin for TokenDashboardViewport
impl UnsafeUnpin for TokenDashboardViewport
impl UnwindSafe for TokenDashboardViewport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more