#[non_exhaustive]pub struct MysqlObjectIdentifier {
pub database: String,
pub table: String,
/* private fields */
}
Expand description
Mysql data source object identifier.
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.database: String
Required. The database name.
table: String
Required. The table name.
Implementations§
Trait Implementations§
Source§impl Clone for MysqlObjectIdentifier
impl Clone for MysqlObjectIdentifier
Source§fn clone(&self) -> MysqlObjectIdentifier
fn clone(&self) -> MysqlObjectIdentifier
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 MysqlObjectIdentifier
impl Debug for MysqlObjectIdentifier
Source§impl Default for MysqlObjectIdentifier
impl Default for MysqlObjectIdentifier
Source§fn default() -> MysqlObjectIdentifier
fn default() -> MysqlObjectIdentifier
Returns the “default value” for a type. Read more
Source§impl Message for MysqlObjectIdentifier
impl Message for MysqlObjectIdentifier
Source§impl PartialEq for MysqlObjectIdentifier
impl PartialEq for MysqlObjectIdentifier
impl StructuralPartialEq for MysqlObjectIdentifier
Auto Trait Implementations§
impl Freeze for MysqlObjectIdentifier
impl RefUnwindSafe for MysqlObjectIdentifier
impl Send for MysqlObjectIdentifier
impl Sync for MysqlObjectIdentifier
impl Unpin for MysqlObjectIdentifier
impl UnwindSafe for MysqlObjectIdentifier
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