pub struct TerminalReader<Inner: Read> { /* private fields */ }
Expand description
A wrapper around a Read
which adds minimal terminal support.
Implementations§
Source§impl<Inner: Read + AsGrip> TerminalReader<Inner>
impl<Inner: Read + AsGrip> TerminalReader<Inner>
Sourcepub fn with_handle(inner: Inner) -> Self
pub fn with_handle(inner: Inner) -> Self
Wrap a TerminalReader
around the given stream, autodetecting
terminal properties using its AsGrip
implementation.
Source§impl<Inner: Read> TerminalReader<Inner>
impl<Inner: Read> TerminalReader<Inner>
Sourcepub fn generic(inner: Inner) -> Self
pub fn generic(inner: Inner) -> Self
Wrap a TerminalReader
around the given stream, using
conservative terminal properties.
Sourcepub fn into_inner(self) -> Inner
pub fn into_inner(self) -> Inner
Consume self
and return the inner stream.
Trait Implementations§
Source§impl<Inner: Read + AsHandleOrSocket> AsHandleOrSocket for TerminalReader<Inner>
Available on Windows only.
impl<Inner: Read + AsHandleOrSocket> AsHandleOrSocket for TerminalReader<Inner>
Available on Windows only.
Source§fn as_handle_or_socket(&self) -> BorrowedHandleOrSocket<'_>
fn as_handle_or_socket(&self) -> BorrowedHandleOrSocket<'_>
Like
AsHandle::as_handle
and AsSocket::as_socket
but can return either type.Source§impl<Inner: Read + AsRawHandleOrSocket> AsRawHandleOrSocket for TerminalReader<Inner>
Available on Windows only.
impl<Inner: Read + AsRawHandleOrSocket> AsRawHandleOrSocket for TerminalReader<Inner>
Available on Windows only.
Source§fn as_raw_handle_or_socket(&self) -> RawHandleOrSocket
fn as_raw_handle_or_socket(&self) -> RawHandleOrSocket
Like
AsRawHandle::as_raw_handle
and AsRawSocket::as_raw_socket
but can return either type.Source§impl<Inner: Read> Read for TerminalReader<Inner>
impl<Inner: Read> Read for TerminalReader<Inner>
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
Pull some bytes from this source into the specified buffer, returning
how many bytes were read. Read more
Source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
Like
read
, except that it reads into a slice of buffers. Read moreSource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)Source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize>
Reads all bytes until EOF in this source, placing them into
buf
. Read moreSource§fn read_to_string(&mut self, buf: &mut String) -> Result<usize>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize>
Reads all bytes until EOF in this source, appending them to
buf
. Read moreSource§fn read_exact(&mut self, buf: &mut [u8]) -> Result<()>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<()>
Reads the exact number of bytes required to fill
buf
. Read moreSource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Pull some bytes from this source into the specified buffer. Read more
Source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Reads the exact number of bytes required to fill
cursor
. Read more1.0.0 · Source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Creates a “by reference” adapter for this instance of
Read
. Read moreSource§impl<Inner: Read> ReadTerminal for TerminalReader<Inner>
impl<Inner: Read> ReadTerminal for TerminalReader<Inner>
Source§fn is_line_by_line(&self) -> bool
fn is_line_by_line(&self) -> bool
Test whether the input is being sent a line at a time.
Source§fn is_input_terminal(&self) -> bool
fn is_input_terminal(&self) -> bool
Test whether the input is connected to a terminal. Read more
impl<Inner: Read> Terminal for TerminalReader<Inner>
Auto Trait Implementations§
impl<Inner> Freeze for TerminalReader<Inner>where
Inner: Freeze,
impl<Inner> RefUnwindSafe for TerminalReader<Inner>where
Inner: RefUnwindSafe,
impl<Inner> Send for TerminalReader<Inner>where
Inner: Send,
impl<Inner> Sync for TerminalReader<Inner>where
Inner: Sync,
impl<Inner> Unpin for TerminalReader<Inner>where
Inner: Unpin,
impl<Inner> UnwindSafe for TerminalReader<Inner>where
Inner: UnwindSafe,
Blanket Implementations§
Source§impl<T> AsGrip for Twhere
T: AsHandleOrSocket,
impl<T> AsGrip for Twhere
T: AsHandleOrSocket,
Source§fn as_grip(&self) -> BorrowedHandleOrSocket<'_>
fn as_grip(&self) -> BorrowedHandleOrSocket<'_>
Extracts the grip.
Source§impl<T> AsRawGrip for Twhere
T: AsRawHandleOrSocket,
impl<T> AsRawGrip for Twhere
T: AsRawHandleOrSocket,
Source§fn as_raw_grip(&self) -> RawHandleOrSocket
fn as_raw_grip(&self) -> RawHandleOrSocket
Extracts the raw grip.
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