pub struct DbHeader {Show 20 fields
pub page_size: PageSize,
pub write_version: u8,
pub read_version: u8,
pub max_payload_fraction: u8,
pub min_payload_fraction: u8,
pub leaf_payload_fraction: u8,
pub file_change_counter: u32,
pub db_size: u32,
pub first_freelist_page_no: u32,
pub total_freelist_pages: u32,
pub schema_cookie: u32,
pub schema_format_no: u32,
pub default_page_cache_size: u32,
pub no_largest_root_b_tree: u32,
pub db_text_encoding: TextEncoding,
pub user_version: u32,
pub incremental_vacuum_mode: u32,
pub application_id: u32,
pub version_valid_for_no: u32,
pub sqlite_version_number: u32,
}
Fields§
§page_size: PageSize
§write_version: u8
§read_version: u8
§max_payload_fraction: u8
§min_payload_fraction: u8
§leaf_payload_fraction: u8
§file_change_counter: u32
§db_size: u32
§first_freelist_page_no: u32
§total_freelist_pages: u32
§schema_format_no: u32
§default_page_cache_size: u32
§no_largest_root_b_tree: u32
§db_text_encoding: TextEncoding
§user_version: u32
§incremental_vacuum_mode: u32
§application_id: u32
§version_valid_for_no: u32
§sqlite_version_number: u32
Auto Trait Implementations§
impl Freeze for DbHeader
impl RefUnwindSafe for DbHeader
impl Send for DbHeader
impl Sync for DbHeader
impl Unpin for DbHeader
impl UnwindSafe for DbHeader
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