pub struct TerminalFrame {
pub pane_id: PaneId,
pub terminal_id: TerminalId,
pub revision: u64,
pub cols: u16,
pub rows: u16,
pub cells: Vec<Cell>,
pub cursor: Cursor,
pub selection: Vec<TerminalSelectionRange>,
}Fields§
§pane_id: PaneId§terminal_id: TerminalId§revision: u64§cols: u16§rows: u16§cells: Vec<Cell>§cursor: Cursor§selection: Vec<TerminalSelectionRange>Trait Implementations§
Source§impl Clone for TerminalFrame
impl Clone for TerminalFrame
Source§fn clone(&self) -> TerminalFrame
fn clone(&self) -> TerminalFrame
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 moreSource§impl Debug for TerminalFrame
impl Debug for TerminalFrame
Source§impl<'de> Deserialize<'de> for TerminalFrame
impl<'de> Deserialize<'de> for TerminalFrame
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TerminalFrame
Source§impl PartialEq for TerminalFrame
impl PartialEq for TerminalFrame
Source§impl Serialize for TerminalFrame
impl Serialize for TerminalFrame
impl StructuralPartialEq for TerminalFrame
Auto Trait Implementations§
impl Freeze for TerminalFrame
impl RefUnwindSafe for TerminalFrame
impl Send for TerminalFrame
impl Sync for TerminalFrame
impl Unpin for TerminalFrame
impl UnsafeUnpin for TerminalFrame
impl UnwindSafe for TerminalFrame
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<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.