ArrayQueue

Struct ArrayQueue 

Source
pub struct ArrayQueue<T, const N: usize> { /* private fields */ }
Expand description

A queue backed by a fixed-size array.

Implementations§

Source§

impl<T, const N: usize> ArrayQueue<T, N>

Source

pub const fn new() -> Self

Creates an empty queue.

Source

pub const fn first(&self) -> Option<&T>

Returns a reference to the first element of the queue, or None if it is empty.

Source

pub const fn first_mut(&mut self) -> Option<&mut T>

Returns a mutable reference to the first element of the queue, or None if it is empty.

Source

pub const fn last(&self) -> Option<&T>

Returns a reference to the last element of the queue, or None if it is empty.

Source

pub const fn last_mut(&mut self) -> Option<&mut T>

Returns a mutable reference to the last element of the queue, or None if it is empty.

Source

pub fn push_front(&mut self, x: T) -> Result<(), CapacityError>

Pushes an element to the front of the queue.

Source

pub fn push_back(&mut self, x: T) -> Result<(), CapacityError>

Pushes an element to the back of the queue.

Source

pub const fn pop_front(&mut self) -> Option<T>

Pops an element from the front of the queue.

Source

pub const fn pop_back(&mut self) -> Option<T>

Pops an element from the back of the queue.

Source

pub const fn len(&self) -> usize

Returns the number of elements in the queue.

Source

pub const fn is_empty(&self) -> bool

Returns true if the queue is empty.

Source

pub const fn is_full(&self) -> bool

Returns true if the queue is full.

Trait Implementations§

Source§

impl<T: Clone, const N: usize> Clone for ArrayQueue<T, N>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug, const N: usize> Debug for ArrayQueue<T, N>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T, const N: usize> Default for ArrayQueue<T, N>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T, const N: usize> Drop for ArrayQueue<T, N>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl<'a, T, const N: usize> IntoIterator for &'a ArrayQueue<T, N>

Source§

type Item = &'a T

The type of the elements being iterated over.
Source§

type IntoIter = ArrayQueueIterator<'a, T, N>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<'a, T, const N: usize> IntoIterator for &'a mut ArrayQueue<T, N>

Source§

type Item = &'a mut T

The type of the elements being iterated over.
Source§

type IntoIter = ArrayQueueMutIterator<'a, T, N>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<T, const N: usize> Freeze for ArrayQueue<T, N>
where T: Freeze,

§

impl<T, const N: usize> RefUnwindSafe for ArrayQueue<T, N>
where T: RefUnwindSafe,

§

impl<T, const N: usize> Send for ArrayQueue<T, N>
where T: Send,

§

impl<T, const N: usize> Sync for ArrayQueue<T, N>
where T: Sync,

§

impl<T, const N: usize> Unpin for ArrayQueue<T, N>
where T: Unpin,

§

impl<T, const N: usize> UnwindSafe for ArrayQueue<T, N>
where T: UnwindSafe,

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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, 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.