pub struct WaitFor<'a> {
pub locked: bool,
pub woken: bool,
pub unlocked: bool,
pub channel: Option<Cow<'a, str>>,
}
Expand description
§Manual
tmux ^1.9:
wait-for [-L | -S | -U] channel
(alias: wait)
tmux ^1.8:
wait-for -LSU channel
(alias: wait)
Fields§
§locked: bool
[-L]
woken: bool
[-S]
unlocked: bool
[-U]
channel: Option<Cow<'a, str>>
channel
Implementations§
Trait Implementations§
Source§impl<'a> From<WaitFor<'a>> for TmuxCommand<'a>
impl<'a> From<WaitFor<'a>> for TmuxCommand<'a>
Source§impl<'a> Ord for WaitFor<'a>
impl<'a> Ord for WaitFor<'a>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialOrd for WaitFor<'a>
impl<'a> PartialOrd for WaitFor<'a>
impl<'a> Eq for WaitFor<'a>
impl<'a> StructuralPartialEq for WaitFor<'a>
Auto Trait Implementations§
impl<'a> Freeze for WaitFor<'a>
impl<'a> RefUnwindSafe for WaitFor<'a>
impl<'a> Send for WaitFor<'a>
impl<'a> Sync for WaitFor<'a>
impl<'a> Unpin for WaitFor<'a>
impl<'a> UnwindSafe for WaitFor<'a>
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