Struct rustix::io::epoll::EventVec

source ·
pub struct EventVec<'context, Context: Context> { /* private fields */ }
Expand description

A vector of Events, plus context for interpreting them.

Implementations§

source§

impl<'context, Context: Context> EventVec<'context, Context>

source

pub fn with_capacity(capacity: usize) -> Self

Constructs an EventVec with memory for capacity Events.

source

pub fn capacity(&self) -> usize

Returns the current Event capacity of this EventVec.

source

pub fn reserve(&mut self, additional: usize)

Reserves enough memory for at least additional more Events.

source

pub fn reserve_exact(&mut self, additional: usize)

Reserves enough memory for exactly additional more Events.

source

pub fn clear(&mut self)

Clears all the Events out of this EventVec.

source

pub fn shrink_to_fit(&mut self)

Shrinks the capacity of this EventVec as much as possible.

source

pub fn iter(&self) -> Iter<'_, Context>

Returns an iterator over the Events in this EventVec.

source

pub fn len(&mut self) -> usize

Returns the number of Events logically contained in this EventVec.

source

pub fn is_empty(&mut self) -> bool

Tests whether this EventVec is logically empty.

Trait Implementations§

source§

impl<'context, Context: Context> IntoIterator for &'context EventVec<'context, Context>

§

type IntoIter = Iter<'context, Context>

Which kind of iterator are we turning this into?
§

type Item = (EventFlags, Ref<'context, <Context as Context>::Target>)

The type of the elements being iterated over.
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<'context, Context> RefUnwindSafe for EventVec<'context, Context>where Context: RefUnwindSafe,

§

impl<'context, Context> !Send for EventVec<'context, Context>

§

impl<'context, Context> !Sync for EventVec<'context, Context>

§

impl<'context, Context> Unpin for EventVec<'context, Context>

§

impl<'context, Context> UnwindSafe for EventVec<'context, Context>where Context: RefUnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.