Struct tl::inline::vec::InlineVec

source ·
pub struct InlineVec<T, const N: usize>(/* private fields */);
Expand description

A wrapper around a Vec<T> that lives on the stack if it is small enough.

Implementations§

source§

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

source

pub fn len(&self) -> usize

Returns the number of elements in the vector

source

pub fn is_heap_allocated(&self) -> bool

Checks whether this vector is allocated on the heap

source

pub fn inline_parts_mut(&mut self) -> Option<(&mut [MaybeUninit<T>; N], usize)>

If self is inlined, this returns the underlying raw parts that make up this InlineVec.

Only the first .1 elements are initialized.

source

pub fn to_vec(&self) -> Vec<T>
where T: Clone,

Copies self into a new Vec<T>

source

pub fn push(&mut self, value: T)

Inserts a new element into the vector

source

pub fn get(&self, index: usize) -> Option<&T>

Returns a reference to the value at the given index

source

pub fn get_mut(&mut self, index: usize) -> Option<&mut T>

Returns a mutable reference to the value at the given index

source

pub fn remove(&mut self, index: usize) -> T

Removes an element at a given index

§Panics

Just like Vec::remove, this method will panic if the index is out of bounds.

source

pub fn iter(&self) -> InlineVecIter<'_, T, N>

Returns an iterator over the elements of this vector

source

pub fn as_slice(&self) -> &[T]

Returns a slice to the contents of this vector

Trait Implementations§

source§

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

source§

fn clone(&self) -> InlineVec<T, N>

Returns a copy 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 InlineVec<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> Index<usize> for InlineVec<T, N>

§

type Output = T

The returned type after indexing.
source§

fn index(&self, idx: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

impl<T, const N: usize> UnwindSafe for InlineVec<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> 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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.