pub struct MagicHeaderString(/* private fields */);
Expand description
§Magic Header String (16 Bytes)
Every valid Sqlite database file begins with the following
16 bytes (in hex): 53 51 4c 69 74 65 20 66 6f 72 6d 61 74 20 33 00
.
This byte sequence corresponds to the UTF-8 string Sqlite format 3
including the nul terminator character at the end.
Trait Implementations§
Source§impl Debug for MagicHeaderString
impl Debug for MagicHeaderString
Source§impl Default for MagicHeaderString
impl Default for MagicHeaderString
Auto Trait Implementations§
impl Freeze for MagicHeaderString
impl RefUnwindSafe for MagicHeaderString
impl Send for MagicHeaderString
impl Sync for MagicHeaderString
impl Unpin for MagicHeaderString
impl UnwindSafe for MagicHeaderString
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