pub struct MariaDB {
pub name: String,
pub user: String,
pub password: String,
pub port: u16,
pub db_name: String,
pub host: String,
pub root_password: String,
}Fields§
§name: String§user: String§password: String§port: u16§db_name: String§host: String§root_password: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for MariaDB
impl RefUnwindSafe for MariaDB
impl Send for MariaDB
impl Sync for MariaDB
impl Unpin for MariaDB
impl UnsafeUnpin for MariaDB
impl UnwindSafe for MariaDB
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