pub struct Db {
pub instance: Option<String>,
pub link: Option<String>,
pub statement: Option<String>,
pub db_type: Option<String>,
pub user: Option<String>,
pub rows_affected: Option<i32>,
}
Fields§
§instance: Option<String>
§link: Option<String>
§statement: Option<String>
§db_type: Option<String>
§user: Option<String>
§rows_affected: Option<i32>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Db
impl RefUnwindSafe for Db
impl Send for Db
impl Sync for Db
impl Unpin for Db
impl UnwindSafe for Db
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