pub struct AdoptCandidate {
pub tmux_target: String,
pub session_name: String,
pub pane_id: String,
pub title: String,
pub cwd: String,
pub pid: i32,
pub cols: Option<u16>,
pub rows: Option<u16>,
}Fields§
§tmux_target: String§session_name: String§pane_id: String§title: String§cwd: String§pid: i32§cols: Option<u16>§rows: Option<u16>Trait Implementations§
Source§impl Clone for AdoptCandidate
impl Clone for AdoptCandidate
Source§fn clone(&self) -> AdoptCandidate
fn clone(&self) -> AdoptCandidate
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 AdoptCandidate
impl Debug for AdoptCandidate
Source§impl<'de> Deserialize<'de> for AdoptCandidate
impl<'de> Deserialize<'de> for AdoptCandidate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AdoptCandidate
Source§impl PartialEq for AdoptCandidate
impl PartialEq for AdoptCandidate
Source§fn eq(&self, other: &AdoptCandidate) -> bool
fn eq(&self, other: &AdoptCandidate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AdoptCandidate
impl Serialize for AdoptCandidate
impl StructuralPartialEq for AdoptCandidate
Auto Trait Implementations§
impl Freeze for AdoptCandidate
impl RefUnwindSafe for AdoptCandidate
impl Send for AdoptCandidate
impl Sync for AdoptCandidate
impl Unpin for AdoptCandidate
impl UnsafeUnpin for AdoptCandidate
impl UnwindSafe for AdoptCandidate
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