EpollInterestTable

Struct EpollInterestTable 

Source
pub struct EpollInterestTable(BTreeMap<FdId, Vec<(FdId, WeakFileDescriptionRef<Epoll>)>>);
Expand description

The table of all EpollEventInterest. This tracks, for each file description, which epoll instances have an interest in events for this file description. The FdId is the ID of the epoll instance, so that we can recognize it later when it is slated for removal. The vector is sorted by that ID.

Tuple Fields§

§0: BTreeMap<FdId, Vec<(FdId, WeakFileDescriptionRef<Epoll>)>>

Implementations§

Source§

impl EpollInterestTable

Source

pub(crate) fn new() -> Self

Source

fn insert(&mut self, id: FdId, epoll: &FileDescriptionRef<Epoll>)

Source

fn remove(&mut self, id: FdId, epoll_id: FdId)

Source

fn get_epolls( &self, id: FdId, ) -> Option<impl Iterator<Item = &WeakFileDescriptionRef<Epoll>>>

Source

pub fn remove_epolls(&mut self, id: FdId)

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 24 bytes