pub struct SparseWorkingLayout {
pub active_index: usize,
pub chunk_count: usize,
pub dirty_words_offset: usize,
pub dirty_word_count: usize,
pub summary_words_offset: usize,
pub summary_word_count: usize,
}Fields§
§active_index: usize§chunk_count: usize§dirty_words_offset: usize§dirty_word_count: usize§summary_words_offset: usize§summary_word_count: usizeTrait Implementations§
Source§impl Clone for SparseWorkingLayout
impl Clone for SparseWorkingLayout
Source§fn clone(&self) -> SparseWorkingLayout
fn clone(&self) -> SparseWorkingLayout
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SparseWorkingLayout
impl Debug for SparseWorkingLayout
Source§impl<'de> Deserialize<'de> for SparseWorkingLayout
impl<'de> Deserialize<'de> for SparseWorkingLayout
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SparseWorkingLayout
impl RefUnwindSafe for SparseWorkingLayout
impl Send for SparseWorkingLayout
impl Sync for SparseWorkingLayout
impl Unpin for SparseWorkingLayout
impl UnsafeUnpin for SparseWorkingLayout
impl UnwindSafe for SparseWorkingLayout
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