pub struct Header {
pub page_size: u32,
pub reserved: u8,
pub text_encoding: TextEncoding,
}Expand description
Parsed 100-byte SQLite file header.
Fields§
§page_size: u32Logical page size in bytes (512..=65536).
reserved: u8Reserved bytes at the end of each page (usually 0).
text_encoding: TextEncodingText encoding for TEXT columns (header byte 56).
Implementations§
Trait Implementations§
impl Copy for Header
impl Eq for Header
impl StructuralPartialEq for Header
Auto Trait Implementations§
impl Freeze for Header
impl RefUnwindSafe for Header
impl Send for Header
impl Sync for Header
impl Unpin for Header
impl UnsafeUnpin for Header
impl UnwindSafe for Header
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