pub struct StateIdentityV3 {
pub page_size: u32,
pub page_count: u32,
pub state_root: LogHash,
}Expand description
The content identity of a closed SQLite database in QWAL v3.
state_root binds the page size, page count, and canonical Merkle root.
Fields§
§page_size: u32§page_count: u32§state_root: LogHashTrait Implementations§
Source§impl Clone for StateIdentityV3
impl Clone for StateIdentityV3
Source§fn clone(&self) -> StateIdentityV3
fn clone(&self) -> StateIdentityV3
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 moreimpl Copy for StateIdentityV3
Source§impl Debug for StateIdentityV3
impl Debug for StateIdentityV3
Source§impl<'de> Deserialize<'de> for StateIdentityV3
impl<'de> Deserialize<'de> for StateIdentityV3
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
impl Eq for StateIdentityV3
Source§impl PartialEq for StateIdentityV3
impl PartialEq for StateIdentityV3
Source§impl Serialize for StateIdentityV3
impl Serialize for StateIdentityV3
impl StructuralPartialEq for StateIdentityV3
Auto Trait Implementations§
impl Freeze for StateIdentityV3
impl RefUnwindSafe for StateIdentityV3
impl Send for StateIdentityV3
impl Sync for StateIdentityV3
impl Unpin for StateIdentityV3
impl UnsafeUnpin for StateIdentityV3
impl UnwindSafe for StateIdentityV3
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