#[non_exhaustive]pub struct MysqlRdbms {
pub mysql_databases: Vec<MysqlDatabase>,
/* private fields */
}
Expand description
MySQL database structure
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.mysql_databases: Vec<MysqlDatabase>
Mysql databases on the server
Implementations§
Source§impl MysqlRdbms
impl MysqlRdbms
pub fn new() -> Self
Sourcepub fn set_mysql_databases<T, V>(self, v: T) -> Self
pub fn set_mysql_databases<T, V>(self, v: T) -> Self
Sets the value of mysql_databases.
Trait Implementations§
Source§impl Clone for MysqlRdbms
impl Clone for MysqlRdbms
Source§fn clone(&self) -> MysqlRdbms
fn clone(&self) -> MysqlRdbms
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MysqlRdbms
impl Debug for MysqlRdbms
Source§impl Default for MysqlRdbms
impl Default for MysqlRdbms
Source§fn default() -> MysqlRdbms
fn default() -> MysqlRdbms
Returns the “default value” for a type. Read more
Source§impl PartialEq for MysqlRdbms
impl PartialEq for MysqlRdbms
impl StructuralPartialEq for MysqlRdbms
Auto Trait Implementations§
impl Freeze for MysqlRdbms
impl RefUnwindSafe for MysqlRdbms
impl Send for MysqlRdbms
impl Sync for MysqlRdbms
impl Unpin for MysqlRdbms
impl UnwindSafe for MysqlRdbms
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