[−][src]Struct mio_aio::AioCb
Methods
impl<'a> AioCb<'a>
[src]
Wrapper around nix::sys::aio::AioCb.
Implements mio::Evented. After creation, use mio::Evented::register to connect to the event loop
pub fn from_fd(fd: RawFd, prio: c_int) -> AioCb<'a>
[src]
Wraps nix::sys::aio::AioCb::from_fd.
pub fn from_mut_slice(
fd: RawFd,
offs: u64,
buf: &'a mut [u8],
prio: c_int,
opcode: LioOpcode
) -> AioCb
[src]
fd: RawFd,
offs: u64,
buf: &'a mut [u8],
prio: c_int,
opcode: LioOpcode
) -> AioCb
Wraps nix::sys::aio::from_mut_slice
Not as useful as it sounds, because in typical mio use cases, the compiler can't guarantee that the slice's lifetime is respected.
pub fn from_slice(
fd: RawFd,
offs: u64,
buf: &'a [u8],
prio: c_int,
opcode: LioOpcode
) -> AioCb
[src]
fd: RawFd,
offs: u64,
buf: &'a [u8],
prio: c_int,
opcode: LioOpcode
) -> AioCb
Wraps nix::sys::aio::from_slice
Mostly useful for writing constant slices
pub fn aio_return(&self) -> Result<isize>
[src]
Wrapper for nix::sys::aio::aio_return
pub fn cancel(&self) -> Result<AioCancelStat>
[src]
Wrapper for nix::sys::aio::AioCb::cancel
pub fn error(&self) -> Result<()>
[src]
Wrapper for nix::sys::aio::AioCb::error
Not usually needed, since mio_aio
always uses kqueue for notification.
pub fn fsync(&self, mode: AioFsyncMode) -> Result<()>
[src]
Wrapper for nix::sys::aio::AioCb::fsync
pub fn read(&self) -> Result<()>
[src]
Wrapper for nix::sys::aio::AioCb::read
pub fn write(&self) -> Result<()>
[src]
Wrapper for nix::sys::aio::AioCb::write
Trait Implementations
Auto Trait Implementations
impl<'a> !Send for AioCb<'a>
impl<'a> !Sync for AioCb<'a>
impl<'a> Unpin for AioCb<'a>
impl<'a> !UnwindSafe for AioCb<'a>
impl<'a> !RefUnwindSafe for AioCb<'a>
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,