pub struct ByFilename<'a> {
pub filename: &'a str,
pub flags: OpenFlags,
}
Expand description
Access to a database by filename
Fields§
§filename: &'a str
Filename or sqlite3 style URI.
flags: OpenFlags
Flags for additional control over the new database connection.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ByFilename<'a>
impl<'a> RefUnwindSafe for ByFilename<'a>
impl<'a> Send for ByFilename<'a>
impl<'a> Sync for ByFilename<'a>
impl<'a> Unpin for ByFilename<'a>
impl<'a> UnwindSafe for ByFilename<'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