Struct mio::Io
[−]
[src]
pub struct Io {
// some fields omitted
}pub struct Io {
// some fields omitted
}impl Iofn from_raw_fd(fd: RawFd) -> Ioimpl From<RawFd> for Ioimpl FromRawFd for Iounsafe fn from_raw_fd(fd: RawFd) -> Ioimpl AsRawFd for Ioimpl Evented for Iofn 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 Iofn 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 Selffn bytes(self) -> Bytes<Self>fn chars(self) -> Chars<Self>fn chain<R>(self, next: R) -> Chain<Self, R> where R: Readfn take(self, limit: u64) -> Take<Self>impl<'a> Read for &'a Iofn 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 Selffn bytes(self) -> Bytes<Self>fn chars(self) -> Chars<Self>fn chain<R>(self, next: R) -> Chain<Self, R> where R: Readfn take(self, limit: u64) -> Take<Self>impl Write for Iofn 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 Selfimpl<'a> Write for &'a Iofn 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 Selfimpl Drop for Iofn drop(&mut self)impl Debug for Io