pub struct SqliteBootstrapSummary {
pub database_path: PathBuf,
pub schema_version: i32,
pub writer_contract_version: &'static str,
pub page_size: u32,
pub journal_mode: String,
}Fields§
§database_path: PathBuf§schema_version: i32§writer_contract_version: &'static str§page_size: u32§journal_mode: StringTrait Implementations§
Source§impl Clone for SqliteBootstrapSummary
impl Clone for SqliteBootstrapSummary
Source§fn clone(&self) -> SqliteBootstrapSummary
fn clone(&self) -> SqliteBootstrapSummary
Returns a duplicate of the value. Read more
1.0.0 · 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 SqliteBootstrapSummary
impl Debug for SqliteBootstrapSummary
Source§impl PartialEq for SqliteBootstrapSummary
impl PartialEq for SqliteBootstrapSummary
impl Eq for SqliteBootstrapSummary
impl StructuralPartialEq for SqliteBootstrapSummary
Auto Trait Implementations§
impl Freeze for SqliteBootstrapSummary
impl RefUnwindSafe for SqliteBootstrapSummary
impl Send for SqliteBootstrapSummary
impl Sync for SqliteBootstrapSummary
impl Unpin for SqliteBootstrapSummary
impl UnsafeUnpin for SqliteBootstrapSummary
impl UnwindSafe for SqliteBootstrapSummary
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.