pub struct SqlitePoolInner {
pub path: String,
pub connections: Mutex<Vec<SqliteConnection>>,
}Fields§
§path: String§connections: Mutex<Vec<SqliteConnection>>Auto Trait Implementations§
impl !Freeze for SqlitePoolInner
impl !RefUnwindSafe for SqlitePoolInner
impl !UnwindSafe for SqlitePoolInner
impl Send for SqlitePoolInner
impl Sync for SqlitePoolInner
impl Unpin for SqlitePoolInner
impl UnsafeUnpin for SqlitePoolInner
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