pub enum HistoryPanelMode {
Compact,
Full,
}Expand description
Display mode for the history panel.
Variants§
Compact
Compact mode: shows only the most recent undo/redo items.
Full
Full mode: shows the complete history stack.
Trait Implementations§
Source§impl Clone for HistoryPanelMode
impl Clone for HistoryPanelMode
Source§fn clone(&self) -> HistoryPanelMode
fn clone(&self) -> HistoryPanelMode
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 HistoryPanelMode
impl Debug for HistoryPanelMode
Source§impl Default for HistoryPanelMode
impl Default for HistoryPanelMode
Source§fn default() -> HistoryPanelMode
fn default() -> HistoryPanelMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for HistoryPanelMode
impl PartialEq for HistoryPanelMode
impl Copy for HistoryPanelMode
impl Eq for HistoryPanelMode
impl StructuralPartialEq for HistoryPanelMode
Auto Trait Implementations§
impl Freeze for HistoryPanelMode
impl RefUnwindSafe for HistoryPanelMode
impl Send for HistoryPanelMode
impl Sync for HistoryPanelMode
impl Unpin for HistoryPanelMode
impl UnsafeUnpin for HistoryPanelMode
impl UnwindSafe for HistoryPanelMode
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.