#[non_exhaustive]pub struct MysqlGtidPosition {
    pub gtid_set: String,
    /* private fields */
}Expand description
MySQL GTID position
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.gtid_set: StringRequired. The gtid set to start replication from.
Implementations§
Trait Implementations§
Source§impl Clone for MysqlGtidPosition
 
impl Clone for MysqlGtidPosition
Source§fn clone(&self) -> MysqlGtidPosition
 
fn clone(&self) -> MysqlGtidPosition
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 MysqlGtidPosition
 
impl Debug for MysqlGtidPosition
Source§impl Default for MysqlGtidPosition
 
impl Default for MysqlGtidPosition
Source§fn default() -> MysqlGtidPosition
 
fn default() -> MysqlGtidPosition
Returns the “default value” for a type. Read more
Source§impl Message for MysqlGtidPosition
 
impl Message for MysqlGtidPosition
Source§impl PartialEq for MysqlGtidPosition
 
impl PartialEq for MysqlGtidPosition
impl StructuralPartialEq for MysqlGtidPosition
Auto Trait Implementations§
impl Freeze for MysqlGtidPosition
impl RefUnwindSafe for MysqlGtidPosition
impl Send for MysqlGtidPosition
impl Sync for MysqlGtidPosition
impl Unpin for MysqlGtidPosition
impl UnwindSafe for MysqlGtidPosition
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