Struct syncbuf::Synclist[][src]

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

Implementations

impl<T> Synclist<T>[src]

pub fn with_capacity(capacity: usize) -> Synclist<T>[src]

Creates a Synclist that can hold at least capacity elements without new allocations.

pub fn new() -> Synclist<T>[src]

Creates a Synclist with default capacity (16 for now)

pub fn get(&self, idx: usize) -> Option<&T>[src]

Gets a reference to an element.

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

Returns the number of elements in the list.

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

Returns the number of elements the list can hold without new allocations.

pub fn push(&self, elem: T) -> usize[src]

Pushes an element, returning its index.

Trait Implementations

impl<T: Debug> Debug for Synclist<T>[src]

impl<T> Index<usize> for Synclist<T>[src]

type Output = T

The returned type after indexing.

Auto Trait Implementations

impl<T> Send for Synclist<T>

impl<T> Sync for Synclist<T>

impl<T> Unpin for Synclist<T>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.