pub struct TmuxSession {
pub id: String,
pub created_ms: i64,
pub pid: Option<u32>,
pub tty: Option<String>,
}Expand description
Metadata about a running tmux session from list-sessions.
Fields§
§id: String§created_ms: i64§pid: Option<u32>§tty: Option<String>Trait Implementations§
Source§impl Clone for TmuxSession
impl Clone for TmuxSession
Source§fn clone(&self) -> TmuxSession
fn clone(&self) -> TmuxSession
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 moreAuto Trait Implementations§
impl Freeze for TmuxSession
impl RefUnwindSafe for TmuxSession
impl Send for TmuxSession
impl Sync for TmuxSession
impl Unpin for TmuxSession
impl UnsafeUnpin for TmuxSession
impl UnwindSafe for TmuxSession
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