pub struct PaneTerminalLogEntry {
pub phase: PaneTerminalLifecyclePhase,
pub sequence: Option<u64>,
pub pointer_id: Option<u32>,
pub target: Option<PaneResizeTarget>,
pub recovery_cancel_sequence: Option<u64>,
pub outcome: PaneTerminalLogOutcome,
}Expand description
Structured translation log entry for one raw terminal event.
Fields§
§phase: PaneTerminalLifecyclePhase§sequence: Option<u64>§pointer_id: Option<u32>§target: Option<PaneResizeTarget>§recovery_cancel_sequence: Option<u64>§outcome: PaneTerminalLogOutcomeTrait Implementations§
Source§impl Clone for PaneTerminalLogEntry
impl Clone for PaneTerminalLogEntry
Source§fn clone(&self) -> PaneTerminalLogEntry
fn clone(&self) -> PaneTerminalLogEntry
Returns a duplicate 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 Debug for PaneTerminalLogEntry
impl Debug for PaneTerminalLogEntry
Source§impl PartialEq for PaneTerminalLogEntry
impl PartialEq for PaneTerminalLogEntry
impl Copy for PaneTerminalLogEntry
impl Eq for PaneTerminalLogEntry
impl StructuralPartialEq for PaneTerminalLogEntry
Auto Trait Implementations§
impl Freeze for PaneTerminalLogEntry
impl RefUnwindSafe for PaneTerminalLogEntry
impl Send for PaneTerminalLogEntry
impl Sync for PaneTerminalLogEntry
impl Unpin for PaneTerminalLogEntry
impl UnsafeUnpin for PaneTerminalLogEntry
impl UnwindSafe for PaneTerminalLogEntry
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.