pub enum CommandGrouping {
ByLine,
OneGroup,
}Expand description
Queue grouping mode captured while parsing a tmux command list.
Variants§
ByLine
Commands that start on the same source line share one queue group.
OneGroup
All commands in the parsed list share one queue group.
Trait Implementations§
Source§impl Clone for CommandGrouping
impl Clone for CommandGrouping
Source§fn clone(&self) -> CommandGrouping
fn clone(&self) -> CommandGrouping
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 CommandGrouping
Source§impl Debug for CommandGrouping
impl Debug for CommandGrouping
Source§impl Default for CommandGrouping
impl Default for CommandGrouping
Source§fn default() -> CommandGrouping
fn default() -> CommandGrouping
Returns the “default value” for a type. Read more
impl Eq for CommandGrouping
Source§impl PartialEq for CommandGrouping
impl PartialEq for CommandGrouping
Source§fn eq(&self, other: &CommandGrouping) -> bool
fn eq(&self, other: &CommandGrouping) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CommandGrouping
Auto Trait Implementations§
impl Freeze for CommandGrouping
impl RefUnwindSafe for CommandGrouping
impl Send for CommandGrouping
impl Sync for CommandGrouping
impl Unpin for CommandGrouping
impl UnsafeUnpin for CommandGrouping
impl UnwindSafe for CommandGrouping
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