pub struct CompletedFrame<'a> {
pub buffer: &'a Buffer,
pub area: Rect,
pub count: usize,
}
Expand description
CompletedFrame
represents the state of the terminal after all changes performed in the last
Terminal::draw
call have been applied. Therefore, it is only valid until the next call to
Terminal::draw
.
Fields§
§buffer: &'a Buffer
The buffer that was used to draw the last frame.
area: Rect
The size of the last frame.
count: usize
The frame count indicating the sequence number of this frame.
Trait Implementations§
Source§impl<'a> Clone for CompletedFrame<'a>
impl<'a> Clone for CompletedFrame<'a>
Source§fn clone(&self) -> CompletedFrame<'a>
fn clone(&self) -> CompletedFrame<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for CompletedFrame<'a>
impl<'a> Debug for CompletedFrame<'a>
Source§impl<'a> Hash for CompletedFrame<'a>
impl<'a> Hash for CompletedFrame<'a>
Source§impl<'a> PartialEq for CompletedFrame<'a>
impl<'a> PartialEq for CompletedFrame<'a>
impl<'a> Eq for CompletedFrame<'a>
impl<'a> StructuralPartialEq for CompletedFrame<'a>
Auto Trait Implementations§
impl<'a> Freeze for CompletedFrame<'a>
impl<'a> RefUnwindSafe for CompletedFrame<'a>
impl<'a> Send for CompletedFrame<'a>
impl<'a> Sync for CompletedFrame<'a>
impl<'a> Unpin for CompletedFrame<'a>
impl<'a> UnwindSafe for CompletedFrame<'a>
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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