Struct ratatui::CompletedFrame
source · pub struct CompletedFrame<'a> {
pub buffer: &'a Buffer,
pub area: Rect,
}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 BufferThe buffer that was used to draw the last frame.
area: RectThe size of the last 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>
source§fn eq(&self, other: &CompletedFrame<'a>) -> bool
fn eq(&self, other: &CompletedFrame<'a>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl<'a> Eq for CompletedFrame<'a>
impl<'a> StructuralEq for CompletedFrame<'a>
impl<'a> StructuralPartialEq for CompletedFrame<'a>
Auto Trait Implementations§
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
§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
Checks if this value is equivalent to the given key. Read more