pub struct TowerLevel64;
Trait Implementations§
Source§impl TowerLevel for TowerLevel64
impl TowerLevel for TowerLevel64
const WIDTH: usize = 64usize
type Data<T> = [T; 64]
type Base = TowerLevel32
fn split<T>( data: &Self::Data<T>, ) -> (&<Self::Base as TowerLevel>::Data<T>, &<Self::Base as TowerLevel>::Data<T>)
fn split_mut<T>( data: &mut Self::Data<T>, ) -> (&mut <Self::Base as TowerLevel>::Data<T>, &mut <Self::Base as TowerLevel>::Data<T>)
fn join<T: Copy + Default>( left: &<Self::Base as TowerLevel>::Data<T>, right: &<Self::Base as TowerLevel>::Data<T>, ) -> Self::Data<T>
fn from_fn<T>(f: impl FnMut(usize) -> T) -> Self::Data<T>
fn default<T: Copy + Default>() -> Self::Data<T>
Auto Trait Implementations§
impl Freeze for TowerLevel64
impl RefUnwindSafe for TowerLevel64
impl Send for TowerLevel64
impl Sync for TowerLevel64
impl Unpin for TowerLevel64
impl UnwindSafe for TowerLevel64
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