Struct sqlite_rs::header::magic_header_string::MagicHeaderString
source · pub struct MagicHeaderString<'a>(_);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<'a> Debug for MagicHeaderString<'a>
impl<'a> Debug for MagicHeaderString<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for MagicHeaderString<'a>
impl<'a> Send for MagicHeaderString<'a>
impl<'a> Sync for MagicHeaderString<'a>
impl<'a> Unpin for MagicHeaderString<'a>
impl<'a> UnwindSafe for MagicHeaderString<'a>
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