pub struct PaneSnapshot {
pub content: String,
pub captured_at_ms: u64,
pub scrollback_lines_requested: u32,
pub scrollback_lines_included: u32,
pub pane_history_lines: u32,
}Fields§
§content: String§captured_at_ms: u64§scrollback_lines_requested: u32§scrollback_lines_included: u32§pane_history_lines: u32Trait Implementations§
Source§impl CliOutput for PaneSnapshot
impl CliOutput for PaneSnapshot
fn render_human(&self, f: &mut impl Write) -> Result
Source§impl Clone for PaneSnapshot
impl Clone for PaneSnapshot
Source§fn clone(&self) -> PaneSnapshot
fn clone(&self) -> PaneSnapshot
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 PaneSnapshot
impl Debug for PaneSnapshot
Source§impl<'de> Deserialize<'de> for PaneSnapshot
impl<'de> Deserialize<'de> for PaneSnapshot
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
Source§impl PartialEq for PaneSnapshot
impl PartialEq for PaneSnapshot
Source§fn eq(&self, other: &PaneSnapshot) -> bool
fn eq(&self, other: &PaneSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PaneSnapshot
impl Serialize for PaneSnapshot
impl Eq for PaneSnapshot
impl StructuralPartialEq for PaneSnapshot
Auto Trait Implementations§
impl Freeze for PaneSnapshot
impl RefUnwindSafe for PaneSnapshot
impl Send for PaneSnapshot
impl Sync for PaneSnapshot
impl Unpin for PaneSnapshot
impl UnsafeUnpin for PaneSnapshot
impl UnwindSafe for PaneSnapshot
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§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.