pub struct DetachReply {
pub not_found_sessions: Vec<String>,
pub not_attached_sessions: Vec<String>,
}
Fields§
§not_found_sessions: Vec<String>
sessions that are not even in the session table
not_attached_sessions: Vec<String>
sessions that are in the session table, but have no tty attached
Trait Implementations§
Source§impl Debug for DetachReply
impl Debug for DetachReply
Source§impl<'de> Deserialize<'de> for DetachReply
impl<'de> Deserialize<'de> for DetachReply
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
Auto Trait Implementations§
impl Freeze for DetachReply
impl RefUnwindSafe for DetachReply
impl Send for DetachReply
impl Sync for DetachReply
impl Unpin for DetachReply
impl UnwindSafe for DetachReply
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