pub struct TierTable { /* private fields */ }Expand description
The materialised grid: 5^(60 + 5k) for every k, ascending.
Built on demand rather than as a static, because on the bigint backend a
Ticks is heap-allocated and cannot be a const. The default backend’s
values are all const-constructible; §13.5’s requirement is that the table
be generated, which it is — from Tier::exponent, never transcribed.
Implementations§
Auto Trait Implementations§
impl Freeze for TierTable
impl RefUnwindSafe for TierTable
impl Send for TierTable
impl Sync for TierTable
impl Unpin for TierTable
impl UnsafeUnpin for TierTable
impl UnwindSafe for TierTable
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