pub struct TargetFindFlags(/* private fields */);Expand description
Flag bitset matching tmux CMD_FIND_* resolution controls.
Implementations§
Source§impl TargetFindFlags
impl TargetFindFlags
Sourcepub const PREFER_UNATTACHED: Self
pub const PREFER_UNATTACHED: Self
Prefer unattached sessions when selecting a best session.
Sourcepub const WINDOW_INDEX: Self
pub const WINDOW_INDEX: Self
Allow a window target to resolve to a nonexistent index.
Sourcepub const DEFAULT_MARKED: Self
pub const DEFAULT_MARKED: Self
Use the marked pane as the default current target.
Sourcepub const EXACT_SESSION: Self
pub const EXACT_SESSION: Self
Suppress session prefix and fnmatch fallback.
Sourcepub const EXACT_WINDOW: Self
pub const EXACT_WINDOW: Self
Suppress window prefix and fnmatch fallback.
Trait Implementations§
Source§impl Clone for TargetFindFlags
impl Clone for TargetFindFlags
Source§fn clone(&self) -> TargetFindFlags
fn clone(&self) -> TargetFindFlags
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 moreSource§impl Debug for TargetFindFlags
impl Debug for TargetFindFlags
Source§impl PartialEq for TargetFindFlags
impl PartialEq for TargetFindFlags
Source§fn eq(&self, other: &TargetFindFlags) -> bool
fn eq(&self, other: &TargetFindFlags) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TargetFindFlags
impl Eq for TargetFindFlags
impl StructuralPartialEq for TargetFindFlags
Auto Trait Implementations§
impl Freeze for TargetFindFlags
impl RefUnwindSafe for TargetFindFlags
impl Send for TargetFindFlags
impl Sync for TargetFindFlags
impl Unpin for TargetFindFlags
impl UnsafeUnpin for TargetFindFlags
impl UnwindSafe for TargetFindFlags
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