pub struct CumulativeOffsets { /* private fields */ }
Implementations§
Source§impl CumulativeOffsets
impl CumulativeOffsets
pub fn from_raw<T>(raw: &[Vec<T>]) -> CumulativeOffsets
pub fn from_raw_2d<T>(raw: &[Vec<Vec<T>>]) -> CumulativeOffsets
pub fn get_slice<'a, 'b, T, U>(&'a self, raw: &'b U, start: usize) -> &'b [T]where
U: ExtractSliceFromRawData<'b, T> + 'b,
Trait Implementations§
Source§impl Debug for CumulativeOffsets
impl Debug for CumulativeOffsets
Source§impl Default for CumulativeOffsets
impl Default for CumulativeOffsets
Source§fn default() -> CumulativeOffsets
fn default() -> CumulativeOffsets
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CumulativeOffsets
impl RefUnwindSafe for CumulativeOffsets
impl Send for CumulativeOffsets
impl Sync for CumulativeOffsets
impl Unpin for CumulativeOffsets
impl UnwindSafe for CumulativeOffsets
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more