Struct zerotrie::builder::konst::store::ConstSlice

source ·
pub(crate) struct ConstSlice<'a, T> {
    full_slice: &'a [T],
    start: usize,
    limit: usize,
}
Expand description

A const-friendly slice type. It is backed by a full slice but is primarily intended to represent subslices of the full slice. We need this only because we can’t take subslices in const Rust.

Fields§

§full_slice: &'a [T]

The full slice.

§start: usize

The start index of the slice represented by this ConstSlice.

§limit: usize

The non-inclusive end index of the slice represented by this ConstSlice.

Implementations§

source§

impl<'a, T> ConstSlice<'a, T>

source

pub const fn from_slice(other: &'a [T]) -> Self

Creates a ConstSlice representing an entire slice.

source

pub const fn from_manual_slice( full_slice: &'a [T], start: usize, limit: usize, ) -> Self

Creates a ConstSlice with the given start and limit.

source

pub const fn len(&self) -> usize

Returns the length of the ConstSlice.

source

pub const fn get_or_panic(&self, index: usize) -> &T

Gets the element at index, panicking if not present.

source

pub const fn last(&self) -> Option<&T>

Gets the last element or None if empty.

source

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

Non-const function that returns this ConstSlice as a regular slice.

Trait Implementations§

source§

impl<'a, T: Clone> Clone for ConstSlice<'a, T>

source§

fn clone(&self) -> ConstSlice<'a, T>

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<'a, T: Debug> Debug for ConstSlice<'a, T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, T> From<&'a [T]> for ConstSlice<'a, T>

source§

fn from(other: &'a [T]) -> Self

Converts to this type from the input type.
source§

impl<'a, T: Copy> Copy for ConstSlice<'a, T>

Auto Trait Implementations§

§

impl<'a, T> Freeze for ConstSlice<'a, T>

§

impl<'a, T> RefUnwindSafe for ConstSlice<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Send for ConstSlice<'a, T>
where T: Sync,

§

impl<'a, T> Sync for ConstSlice<'a, T>
where T: Sync,

§

impl<'a, T> Unpin for ConstSlice<'a, T>

§

impl<'a, T> UnwindSafe for ConstSlice<'a, T>
where T: RefUnwindSafe,

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.
source§

impl<T> ErasedDestructor for T
where T: 'static,