pub enum ScenarioTarget {
SqlServer,
Sqldb,
Sqldw,
Sqlmi,
AzureDbForMySql,
AzureDbForPostgresSql,
MongoDb,
UnknownValue(String),
}
Expand description
An enumeration of target type
Variants§
Implementations§
source§impl ScenarioTarget
impl ScenarioTarget
pub fn serialize<__S>( __self: &ScenarioTarget, __serializer: __S ) -> Result<__S::Ok, __S::Error>where __S: Serializer,
source§impl<'de> ScenarioTarget
impl<'de> ScenarioTarget
pub fn deserialize<__D>( __deserializer: __D ) -> Result<ScenarioTarget, __D::Error>where __D: Deserializer<'de>,
Trait Implementations§
source§impl Clone for ScenarioTarget
impl Clone for ScenarioTarget
source§fn clone(&self) -> ScenarioTarget
fn clone(&self) -> ScenarioTarget
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 ScenarioTarget
impl Debug for ScenarioTarget
source§impl<'de> Deserialize<'de> for ScenarioTarget
impl<'de> Deserialize<'de> for ScenarioTarget
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 ScenarioTarget
impl FromStr for ScenarioTarget
source§impl PartialEq<ScenarioTarget> for ScenarioTarget
impl PartialEq<ScenarioTarget> for ScenarioTarget
source§fn eq(&self, other: &ScenarioTarget) -> bool
fn eq(&self, other: &ScenarioTarget) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ScenarioTarget
impl Serialize for ScenarioTarget
impl StructuralPartialEq for ScenarioTarget
Auto Trait Implementations§
impl RefUnwindSafe for ScenarioTarget
impl Send for ScenarioTarget
impl Sync for ScenarioTarget
impl Unpin for ScenarioTarget
impl UnwindSafe for ScenarioTarget
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