Skip to main content

FixedBuffers

Trait FixedBuffers 

Source
pub trait FixedBuffers {
    type Guard;

    // Required methods
    fn fixed_guard(&mut self) -> Option<Self::Guard>;
    fn register_fixed(&mut self, fd: Fd) -> Result<Option<u32>>;
    fn unregister_fixed(&mut self, idx: u32);
}

Required Associated Types§

Required Methods§

Source

fn fixed_guard(&mut self) -> Option<Self::Guard>

Source

fn register_fixed(&mut self, fd: Fd) -> Result<Option<u32>>

Source

fn unregister_fixed(&mut self, idx: u32)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§