pub struct CommandTargetSpec {
pub flag: char,
pub find_type: TargetFindType,
pub flags: TargetFindFlags,
}Expand description
Per-command source or target lookup metadata from frozen tmux cmd_entry.
Fields§
§flag: charThe command flag that carries the target text.
find_type: TargetFindTypeThe requested find result type.
flags: TargetFindFlagsThe tmux CMD_FIND_* flags for this target.
Trait Implementations§
Source§impl Clone for CommandTargetSpec
impl Clone for CommandTargetSpec
Source§fn clone(&self) -> CommandTargetSpec
fn clone(&self) -> CommandTargetSpec
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 CommandTargetSpec
Source§impl Debug for CommandTargetSpec
impl Debug for CommandTargetSpec
impl Eq for CommandTargetSpec
Source§impl PartialEq for CommandTargetSpec
impl PartialEq for CommandTargetSpec
impl StructuralPartialEq for CommandTargetSpec
Auto Trait Implementations§
impl Freeze for CommandTargetSpec
impl RefUnwindSafe for CommandTargetSpec
impl Send for CommandTargetSpec
impl Sync for CommandTargetSpec
impl Unpin for CommandTargetSpec
impl UnsafeUnpin for CommandTargetSpec
impl UnwindSafe for CommandTargetSpec
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