Struct mio::Io
[−]
[src]
pub struct Io { // some fields omitted }
pub struct Io { // some fields omitted }
impl Io
fn from_raw_fd(fd: RawFd) -> Io
impl From<RawFd> for Io
impl FromRawFd for Io
unsafe fn from_raw_fd(fd: RawFd) -> Io
impl AsRawFd for Io
impl Evented for Io
fn register(&self, selector: &mut Selector, token: Token, interest: EventSet, opts: PollOpt) -> Result<()>
fn reregister(&self, selector: &mut Selector, token: Token, interest: EventSet, opts: PollOpt) -> Result<()>
fn deregister(&self, selector: &mut Selector) -> Result<()>
impl Read for Io
fn read(&mut self, dst: &mut [u8]) -> Result<usize>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn by_ref(&mut self) -> &mut Self
fn bytes(self) -> Bytes<Self>
fn chars(self) -> Chars<Self>
fn chain<R>(self, next: R) -> Chain<Self, R> where R: Read
fn take(self, limit: u64) -> Take<Self>
impl<'a> Read for &'a Io
fn read(&mut self, dst: &mut [u8]) -> Result<usize>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn by_ref(&mut self) -> &mut Self
fn bytes(self) -> Bytes<Self>
fn chars(self) -> Chars<Self>
fn chain<R>(self, next: R) -> Chain<Self, R> where R: Read
fn take(self, limit: u64) -> Take<Self>
impl Write for Io
fn write(&mut self, src: &[u8]) -> Result<usize>
fn flush(&mut self) -> Result<()>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>
fn by_ref(&mut self) -> &mut Self
impl<'a> Write for &'a Io
fn write(&mut self, src: &[u8]) -> Result<usize>
fn flush(&mut self) -> Result<()>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>
fn by_ref(&mut self) -> &mut Self
impl Drop for Io
fn drop(&mut self)
impl Debug for Io