pub enum MySqlTargetPlatform {
SqlServer,
AzureDbForMySql,
UnknownValue(String),
}
Expand description
An enumeration of possible target types when migrating from MySQL
Variants§
Implementations§
source§impl MySqlTargetPlatform
impl MySqlTargetPlatform
pub fn serialize<__S>( __self: &MySqlTargetPlatform, __serializer: __S ) -> Result<__S::Ok, __S::Error>where __S: Serializer,
source§impl<'de> MySqlTargetPlatform
impl<'de> MySqlTargetPlatform
pub fn deserialize<__D>( __deserializer: __D ) -> Result<MySqlTargetPlatform, __D::Error>where __D: Deserializer<'de>,
Trait Implementations§
source§impl Clone for MySqlTargetPlatform
impl Clone for MySqlTargetPlatform
source§fn clone(&self) -> MySqlTargetPlatform
fn clone(&self) -> MySqlTargetPlatform
Returns a copy 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 MySqlTargetPlatform
impl Debug for MySqlTargetPlatform
source§impl<'de> Deserialize<'de> for MySqlTargetPlatform
impl<'de> Deserialize<'de> for MySqlTargetPlatform
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl FromStr for MySqlTargetPlatform
impl FromStr for MySqlTargetPlatform
source§impl PartialEq<MySqlTargetPlatform> for MySqlTargetPlatform
impl PartialEq<MySqlTargetPlatform> for MySqlTargetPlatform
source§fn eq(&self, other: &MySqlTargetPlatform) -> bool
fn eq(&self, other: &MySqlTargetPlatform) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for MySqlTargetPlatform
impl Serialize for MySqlTargetPlatform
impl StructuralPartialEq for MySqlTargetPlatform
Auto Trait Implementations§
impl RefUnwindSafe for MySqlTargetPlatform
impl Send for MySqlTargetPlatform
impl Sync for MySqlTargetPlatform
impl Unpin for MySqlTargetPlatform
impl UnwindSafe for MySqlTargetPlatform
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