Struct kas_core::layout::FixedRowStorage
source · [−]pub struct FixedRowStorage<const C: usize> { /* private fields */ }Expand description
Fixed-length row storage
Uses const-generics argument C (the number of columns).
Trait Implementations
sourceimpl<const C: usize> Clone for FixedRowStorage<C>
impl<const C: usize> Clone for FixedRowStorage<C>
sourcefn clone(&self) -> FixedRowStorage<C>
fn clone(&self) -> FixedRowStorage<C>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<const C: usize> Debug for FixedRowStorage<C>
impl<const C: usize> Debug for FixedRowStorage<C>
sourceimpl<const C: usize> Default for FixedRowStorage<C>
impl<const C: usize> Default for FixedRowStorage<C>
sourceimpl<const C: usize> RowStorage for FixedRowStorage<C>
impl<const C: usize> RowStorage for FixedRowStorage<C>
sourcefn widths_and_rules(&mut self) -> (&mut [i32], &mut [SizeRules])
fn widths_and_rules(&mut self) -> (&mut [i32], &mut [SizeRules])
Access widths and rules simultaneously
Auto Trait Implementations
impl<const C: usize> RefUnwindSafe for FixedRowStorage<C>
impl<const C: usize> Send for FixedRowStorage<C>
impl<const C: usize> Sync for FixedRowStorage<C>
impl<const C: usize> Unpin for FixedRowStorage<C>
impl<const C: usize> UnwindSafe for FixedRowStorage<C>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
sourcefn try_cast_approx(self) -> Result<T, Error>
fn try_cast_approx(self) -> Result<T, Error>
Try approximate conversion from Self to T Read more
sourcefn cast_approx(self) -> T
fn cast_approx(self) -> T
Cast approximately from Self to T Read more
sourceimpl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
sourcefn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
sourcefn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
sourcefn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more
sourcefn try_cast_trunc(self) -> Result<T, Error>
fn try_cast_trunc(self) -> Result<T, Error>
Try converting to integer with truncation Read more
sourcefn try_cast_nearest(self) -> Result<T, Error>
fn try_cast_nearest(self) -> Result<T, Error>
Try converting to the nearest integer Read more
sourcefn try_cast_floor(self) -> Result<T, Error>
fn try_cast_floor(self) -> Result<T, Error>
Try converting the floor to an integer Read more
sourcefn try_cast_ceil(self) -> Result<T, Error>
fn try_cast_ceil(self) -> Result<T, Error>
Try convert the ceiling to an integer Read more