Struct NonEmptyVec

Source
pub struct NonEmptyVec<T: Sized> { /* private fields */ }
Expand description

A non-empty vector type, counterpart of Vec<T>.

Implementations§

Source§

impl<T: Sized> NonEmptyVec<T>

Source

pub fn from_vec(vec: Vec<T>) -> Self

Converts a Vec<T> into a NonEmptyVec.

§Panics

This function will panic if passed Vec is empty.

Source

pub fn from_vec_checked(vec: Vec<T>) -> Result<Self, Vec<T>>

Converts a Vec<T> into a NonEmptyVec. Returns passed Vec if it is empty.

Source

pub fn as_ptr(&self) -> *const T

Returns a raw pointer to the vector’s buffer.

Source

pub fn as_mut_ptr(&mut self) -> *mut T

Returns an unsafe mutable pointer to the vector’s buffer.

Source

pub fn as_nonempty_slice(&self) -> NonEmptySlice<'_, T>

Returns a non-empty slice from this vec.

Source

pub fn as_nonempty_mut_slice(&mut self) -> NonEmptyMutSlice<'_, T>

Returns a non-empty mutable slice from this vec.

Source

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

Extracts a slice containing the entire vector.

Source

pub fn as_mut_slice(&mut self) -> &mut [T]

Extracts a mutable slice of the entire vector.

Source

pub fn len(&self) -> NonZeroUsize

Returns the number of elements in the vector.

Source

pub fn is_empty(&self) -> bool

Always returns false because the vector is non-empty.

Source

pub fn capacity(&self) -> NonZeroUsize

Returns the number of elements the vector can hold without reallocating.

Source

pub fn into_vec(self) -> Vec<T>

Converts self into a vector without clones or allocations.

Source

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

Copies self into a new Vec.

Source

pub fn first(&self) -> &T

A shorthand for NonEmptyMutSlice::first.

Source

pub fn first_mut(&mut self) -> &mut T

A shorthand for NonEmptyMutSlice::first_mut.

Source

pub fn last(&self) -> &T

A shorthand for NonEmptyMutSlice::last.

Source

pub fn last_mut(&mut self) -> &mut T

A shorthand for NonEmptyMutSlice::last_mut.

Source

pub fn split_first(&self) -> (&T, &[T])

Source

pub fn split_first_mut(&mut self) -> (&mut T, &mut [T])

Source

pub fn split_last(&self) -> (&T, &[T])

Source

pub fn split_last_mut(&mut self) -> (&mut T, &mut [T])

Trait Implementations§

Source§

impl<T> AsRef<[T]> for NonEmptyVec<T>

Source§

fn as_ref(&self) -> &[T]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<T: Clone> Clone for NonEmptyVec<T>

Source§

fn clone(&self) -> Self

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: Ord> Ord for NonEmptyVec<T>

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<T: PartialEq> PartialEq for NonEmptyVec<T>

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: PartialOrd> PartialOrd for NonEmptyVec<T>

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T: Eq> Eq for NonEmptyVec<T>

Auto Trait Implementations§

§

impl<T> Freeze for NonEmptyVec<T>

§

impl<T> RefUnwindSafe for NonEmptyVec<T>
where T: RefUnwindSafe,

§

impl<T> Send for NonEmptyVec<T>
where T: Send,

§

impl<T> Sync for NonEmptyVec<T>
where T: Sync,

§

impl<T> Unpin for NonEmptyVec<T>
where T: Unpin,

§

impl<T> UnwindSafe for NonEmptyVec<T>
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, dst: *mut u8)

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

Source§

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

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.