use crate::commands::constants::*;
use crate::TmuxCommand;
use std::borrow::Cow;
pub type LockS<'a> = LockSession<'a>;
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Default)]
pub struct LockSession<'a> {
#[cfg(feature = "tmux_1_5")]
pub target_session: Option<Cow<'a, str>>,
}
impl<'a> LockSession<'a> {
pub fn new() -> Self {
Default::default()
}
#[cfg(feature = "tmux_1_5")]
pub fn target_session<S: Into<Cow<'a, str>>>(mut self, target_session: S) -> Self {
self.target_session = Some(target_session.into());
self
}
pub fn build(self) -> TmuxCommand<'a> {
let mut cmd = TmuxCommand::new();
cmd.name(LOCK_SESSION);
#[cfg(feature = "tmux_1_5")]
if let Some(target_session) = self.target_session {
cmd.push_option(T_LOWERCASE_KEY, target_session);
}
cmd
}
}