[][src]Struct illist::List

pub struct List<T> { /* fields omitted */ }

Methods

impl<T> List<T>[src]

pub fn new(initial_capacity: usize) -> List<T>[src]

pub fn push_back(&mut self, data: T) -> usize[src]

pub fn pop(&mut self, id: Id)[src]

pub fn get(&self, id: Id) -> &T[src]

pub fn get_mut(&mut self, id: Id) -> &mut T[src]

pub fn len(&self) -> usize[src]

pub fn is_empty(&self) -> bool[src]

pub fn unordered_iter(&self) -> impl Iterator<Item = (Id, &T)>[src]

pub fn unordered_iter_mut(&mut self) -> impl Iterator<Item = (Id, &mut T)>[src]

Trait Implementations

impl<T: Default> Default for List<T>[src]

impl<T: Clone> Clone for List<T>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T> Send for List<T> where
    T: Send

impl<T> Sync for List<T> where
    T: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]