pub struct PackedSlice<'a, P: PackedField> { /* private fields */ }
Implementations§
Source§impl<'a, P: PackedField> PackedSlice<'a, P>
impl<'a, P: PackedField> PackedSlice<'a, P>
Trait Implementations§
Source§impl<P: PackedField> ScalarsCollection<<P as PackedField>::Scalar> for PackedSlice<'_, P>
impl<P: PackedField> ScalarsCollection<<P as PackedField>::Scalar> for PackedSlice<'_, P>
Auto Trait Implementations§
impl<'a, P> Freeze for PackedSlice<'a, P>
impl<'a, P> RefUnwindSafe for PackedSlice<'a, P>where
P: RefUnwindSafe,
impl<'a, P> Send for PackedSlice<'a, P>
impl<'a, P> Sync for PackedSlice<'a, P>
impl<'a, P> Unpin for PackedSlice<'a, P>
impl<'a, P> UnwindSafe for PackedSlice<'a, P>where
P: 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
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