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>
impl<'a, T> ConstSlice<'a, T>
sourcepub const fn from_slice(other: &'a [T]) -> Self
pub const fn from_slice(other: &'a [T]) -> Self
Creates a ConstSlice
representing an entire slice.
sourcepub const fn from_manual_slice(
full_slice: &'a [T],
start: usize,
limit: usize,
) -> Self
pub const fn from_manual_slice( full_slice: &'a [T], start: usize, limit: usize, ) -> Self
Creates a ConstSlice
with the given start and limit.
sourcepub const fn len(&self) -> usize
pub const fn len(&self) -> usize
Returns the length of the ConstSlice
.
sourcepub const fn get_or_panic(&self, index: usize) -> &T
pub const fn get_or_panic(&self, index: usize) -> &T
Gets the element at index
, panicking if not present.
sourcepub fn as_slice(&self) -> &'a [T]
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>
impl<'a, T: Clone> Clone for ConstSlice<'a, T>
source§fn clone(&self) -> ConstSlice<'a, T>
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a, T: Debug> Debug for ConstSlice<'a, T>
impl<'a, T: Debug> Debug for ConstSlice<'a, T>
source§impl<'a, T> From<&'a [T]> for ConstSlice<'a, T>
impl<'a, T> From<&'a [T]> for ConstSlice<'a, T>
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more