pub struct Slice(/* private fields */);Implementations§
Trait Implementations§
impl Eq for Slice
Source§impl<T0, T1, T2> From<(T0, T1, T2)> for Slice
impl<T0, T1, T2> From<(T0, T1, T2)> for Slice
Source§fn from((t_0, t_1, t_2): (T0, T1, T2)) -> Self
fn from((t_0, t_1, t_2): (T0, T1, T2)) -> Self
Converts to this type from the input type.
Source§impl<T0, T1, T2, T3> From<(T0, T1, T2, T3)> for Slice
impl<T0, T1, T2, T3> From<(T0, T1, T2, T3)> for Slice
Source§fn from((t_0, t_1, t_2, t_3): (T0, T1, T2, T3)) -> Self
fn from((t_0, t_1, t_2, t_3): (T0, T1, T2, T3)) -> Self
Converts to this type from the input type.
Source§impl<T0, T1, T2, T3, T4> From<(T0, T1, T2, T3, T4)> for Slice
impl<T0, T1, T2, T3, T4> From<(T0, T1, T2, T3, T4)> for Slice
Source§fn from((t_0, t_1, t_2, t_3, t_4): (T0, T1, T2, T3, T4)) -> Self
fn from((t_0, t_1, t_2, t_3, t_4): (T0, T1, T2, T3, T4)) -> Self
Converts to this type from the input type.
Source§impl<T0, T1, T2, T3, T4, T5> From<(T0, T1, T2, T3, T4, T5)> for Slice
impl<T0, T1, T2, T3, T4, T5> From<(T0, T1, T2, T3, T4, T5)> for Slice
Source§fn from((t_0, t_1, t_2, t_3, t_4, t_5): (T0, T1, T2, T3, T4, T5)) -> Self
fn from((t_0, t_1, t_2, t_3, t_4, t_5): (T0, T1, T2, T3, T4, T5)) -> Self
Converts to this type from the input type.
Source§impl<T0, T1, T2, T3, T4, T5, T6> From<(T0, T1, T2, T3, T4, T5, T6)> for Slice
impl<T0, T1, T2, T3, T4, T5, T6> From<(T0, T1, T2, T3, T4, T5, T6)> for Slice
Source§fn from(
(t_0, t_1, t_2, t_3, t_4, t_5, t_6): (T0, T1, T2, T3, T4, T5, T6),
) -> Self
fn from( (t_0, t_1, t_2, t_3, t_4, t_5, t_6): (T0, T1, T2, T3, T4, T5, T6), ) -> Self
Converts to this type from the input type.
Source§impl<T0, T1, T2, T3, T4, T5, T6, T7> From<(T0, T1, T2, T3, T4, T5, T6, T7)> for Slice
impl<T0, T1, T2, T3, T4, T5, T6, T7> From<(T0, T1, T2, T3, T4, T5, T6, T7)> for Slice
Source§fn from(
(t_0, t_1, t_2, t_3, t_4, t_5, t_6, t_7): (T0, T1, T2, T3, T4, T5, T6, T7),
) -> Self
fn from( (t_0, t_1, t_2, t_3, t_4, t_5, t_6, t_7): (T0, T1, T2, T3, T4, T5, T6, T7), ) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Slice
Auto Trait Implementations§
impl Freeze for Slice
impl RefUnwindSafe for Slice
impl Send for Slice
impl Sync for Slice
impl Unpin for Slice
impl UnsafeUnpin for Slice
impl UnwindSafe for Slice
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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