pub enum PaneAnnouncementCategory {
Focus,
Resize,
Split,
Close,
Move,
Swap,
Maximize,
Restore,
}Expand description
Category of a pane state-change announcement (for host channel routing and coalescing).
Variants§
Focus
Focus moved to a different pane.
Resize
A pane was resized.
Split
A pane was split.
Close
A pane was closed.
Move
A pane was moved/docked.
Swap
Two panes were swapped.
Maximize
A pane was maximized.
Restore
The layout was restored from maximized.
Trait Implementations§
Source§impl Clone for PaneAnnouncementCategory
impl Clone for PaneAnnouncementCategory
Source§fn clone(&self) -> PaneAnnouncementCategory
fn clone(&self) -> PaneAnnouncementCategory
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 moreimpl Copy for PaneAnnouncementCategory
Source§impl Debug for PaneAnnouncementCategory
impl Debug for PaneAnnouncementCategory
impl Eq for PaneAnnouncementCategory
Source§impl PartialEq for PaneAnnouncementCategory
impl PartialEq for PaneAnnouncementCategory
Source§fn eq(&self, other: &PaneAnnouncementCategory) -> bool
fn eq(&self, other: &PaneAnnouncementCategory) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PaneAnnouncementCategory
Auto Trait Implementations§
impl Freeze for PaneAnnouncementCategory
impl RefUnwindSafe for PaneAnnouncementCategory
impl Send for PaneAnnouncementCategory
impl Sync for PaneAnnouncementCategory
impl Unpin for PaneAnnouncementCategory
impl UnsafeUnpin for PaneAnnouncementCategory
impl UnwindSafe for PaneAnnouncementCategory
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