Struct sel4_shared_ring_buffer::RingBuffer

source ·
pub struct RingBuffer<'a, R: RingBufferRole, T = Descriptor> { /* private fields */ }

Implementations§

source§

impl<'a, R: RingBufferRole, T: Copy> RingBuffer<'a, R, T>

source

pub fn new( ptr: ExternallySharedRef<'a, RawRingBuffer<T>>, initialization_strategy: InitializationStrategy, ) -> Self

source

pub const fn capacity(&self) -> usize

source

pub fn num_filled_slots(&mut self) -> Result<usize, PeerMisbehaviorError>

source

pub fn num_empty_slots(&mut self) -> Result<usize, PeerMisbehaviorError>

source

pub fn is_empty(&mut self) -> Result<bool, PeerMisbehaviorError>

source

pub fn is_full(&mut self) -> Result<bool, PeerMisbehaviorError>

source§

impl<'a, T: Copy + FromBytes + AsBytes> RingBuffer<'a, Write, T>

source

pub fn enqueue_and_commit( &mut self, desc: T, ) -> Result<Result<(), T>, PeerMisbehaviorError>

source

pub fn enqueue_without_committing( &mut self, desc: T, ) -> Result<Result<(), T>, PeerMisbehaviorError>

source

pub fn enqueue( &mut self, desc: T, commit: bool, ) -> Result<Result<(), T>, PeerMisbehaviorError>

source

pub fn force_enqueue(&mut self, desc: T, commit: bool)

source

pub fn commit(&mut self)

source§

impl<'a, T: Copy + FromBytes + AsBytes> RingBuffer<'a, Read, T>

source

pub fn dequeue(&mut self) -> Result<Option<T>, PeerMisbehaviorError>

source

pub fn force_dequeue(&mut self) -> T

Auto Trait Implementations§

§

impl<'a, R, T> Freeze for RingBuffer<'a, R, T>

§

impl<'a, R, T> RefUnwindSafe for RingBuffer<'a, R, T>
where R: RefUnwindSafe, T: RefUnwindSafe,

§

impl<'a, R, T> Send for RingBuffer<'a, R, T>
where R: Send, T: Sync,

§

impl<'a, R, T> Sync for RingBuffer<'a, R, T>
where R: Sync, T: Sync,

§

impl<'a, R, T> Unpin for RingBuffer<'a, R, T>
where R: Unpin,

§

impl<'a, R, T> UnwindSafe for RingBuffer<'a, R, T>
where R: UnwindSafe, T: RefUnwindSafe,

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where 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>

Performs the conversion.