pub(crate) struct TelnetSession {
pub(crate) connected: bool,
pub(crate) line: [u8; 256],
pub(crate) line_len: usize,
pub(crate) iac_skip: u8,
}Fields§
§connected: bool§line: [u8; 256]§line_len: usize§iac_skip: u8Implementations§
Auto Trait Implementations§
impl Freeze for TelnetSession
impl RefUnwindSafe for TelnetSession
impl Send for TelnetSession
impl Sync for TelnetSession
impl Unpin for TelnetSession
impl UnsafeUnpin for TelnetSession
impl UnwindSafe for TelnetSession
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