pub struct PanePointerLogEntry {
pub phase: PanePointerLifecyclePhase,
pub sequence: Option<u64>,
pub pointer_id: Option<u32>,
pub target: Option<PaneResizeTarget>,
pub position: Option<PanePointerPosition>,
pub capture_command: Option<PanePointerCaptureCommand>,
pub outcome: PanePointerLogOutcome,
}Expand description
Structured lifecycle log record for one adapter dispatch.
Fields§
§phase: PanePointerLifecyclePhase§sequence: Option<u64>§pointer_id: Option<u32>§target: Option<PaneResizeTarget>§position: Option<PanePointerPosition>§capture_command: Option<PanePointerCaptureCommand>§outcome: PanePointerLogOutcomeTrait Implementations§
Source§impl Clone for PanePointerLogEntry
impl Clone for PanePointerLogEntry
Source§fn clone(&self) -> PanePointerLogEntry
fn clone(&self) -> PanePointerLogEntry
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 PanePointerLogEntry
impl Debug for PanePointerLogEntry
Source§impl PartialEq for PanePointerLogEntry
impl PartialEq for PanePointerLogEntry
impl Copy for PanePointerLogEntry
impl Eq for PanePointerLogEntry
impl StructuralPartialEq for PanePointerLogEntry
Auto Trait Implementations§
impl Freeze for PanePointerLogEntry
impl RefUnwindSafe for PanePointerLogEntry
impl Send for PanePointerLogEntry
impl Sync for PanePointerLogEntry
impl Unpin for PanePointerLogEntry
impl UnwindSafe for PanePointerLogEntry
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.