kernel::list

Struct List

Source
pub struct List<T: ?Sized + ListItem<ID>, const ID: u64 = 0> { /* private fields */ }
Expand description

A linked list.

All elements in this linked list will be ListArc references to the value. Since a value can only have one ListArc (for each pair of prev/next pointers), this ensures that the same prev/next pointers are not used for several linked lists.

§Invariants

  • If the list is empty, then first is null. Otherwise, first points at the ListLinks field of the first element in the list.
  • All prev/next pointers in ListLinks fields of items in the list are valid and form a cycle.
  • For every item in the list, the list owns the associated ListArc reference and has exclusive access to the ListLinks field.

Implementations§

Source§

impl<T: ?Sized + ListItem<ID>, const ID: u64> List<T, ID>

Source

pub const fn new() -> Self

Creates a new empty list.

Source

pub fn is_empty(&self) -> bool

Returns whether this list is empty.

Source

pub fn push_back(&mut self, item: ListArc<T, ID>)

Add the provided item to the back of the list.

Source

pub fn push_front(&mut self, item: ListArc<T, ID>)

Add the provided item to the front of the list.

Source

pub fn pop_back(&mut self) -> Option<ListArc<T, ID>>

Removes the last item from this list.

Source

pub fn pop_front(&mut self) -> Option<ListArc<T, ID>>

Removes the first item from this list.

Source

pub unsafe fn remove(&mut self, item: &T) -> Option<ListArc<T, ID>>

Removes the provided item from this list and returns it.

This returns None if the item is not in the list. (Note that by the safety requirements, this means that the item is not in any list.)

§Safety

item must not be in a different linked list (with the same id).

Source

pub fn push_all_back(&mut self, other: &mut List<T, ID>)

Moves all items from other into self.

The items of other are added to the back of self, so the last item of other becomes the last item of self.

Source

pub fn cursor_front(&mut self) -> Option<Cursor<'_, T, ID>>

Returns a cursor to the first element of the list.

If the list is empty, this returns None.

Source

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

Creates an iterator over the list.

Trait Implementations§

Source§

impl<T: ?Sized + ListItem<ID>, const ID: u64> Default for List<T, ID>

Source§

fn default() -> Self

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

impl<T: ?Sized + ListItem<ID>, const ID: u64> Drop for List<T, ID>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl<'a, T: ?Sized + ListItem<ID>, const ID: u64> IntoIterator for &'a List<T, ID>

Source§

type IntoIter = Iter<'a, T, ID>

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

type Item = ArcBorrow<'a, T>

The type of the elements being iterated over.
Source§

fn into_iter(self) -> Iter<'a, T, ID>

Creates an iterator from a value. Read more
Source§

impl<T: ?Sized + ListItem<ID>, const ID: u64> IntoIterator for List<T, ID>

Source§

type IntoIter = IntoIter<T, ID>

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

type Item = ListArc<T, ID>

The type of the elements being iterated over.
Source§

fn into_iter(self) -> IntoIter<T, ID>

Creates an iterator from a value. Read more
Source§

impl<T, const ID: u64> Send for List<T, ID>
where ListArc<T, ID>: Send, T: ?Sized + ListItem<ID>,

Source§

impl<T, const ID: u64> Sync for List<T, ID>
where ListArc<T, ID>: Sync, T: ?Sized + ListItem<ID>,

Auto Trait Implementations§

§

impl<T, const ID: u64> Freeze for List<T, ID>
where T: ?Sized,

§

impl<T, const ID: u64 = 0> !RefUnwindSafe for List<T, ID>

§

impl<T, const ID: u64> Unpin for List<T, ID>
where T: ?Sized,

§

impl<T, const ID: u64 = 0> !UnwindSafe for List<T, ID>

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, E> Init<T, E> for T

Source§

unsafe fn __init(self, slot: *mut T) -> Result<(), E>

Initializes slot. Read more
Source§

fn chain<F>(self, f: F) -> ChainInit<Self, F, T, E>
where F: FnOnce(&mut T) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. Read more
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, E> PinInit<T, E> for T

Source§

unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E>

Initializes slot. Read more
Source§

fn pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E>
where F: FnOnce(Pin<&mut T>) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. Read more
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.