#[non_exhaustive]pub enum SeedFrom {
SourceConnectionProfile(String),
DestinationConnectionProfile(String),
}Expand description
The input to be used for seeding the conversion workspace. The input can either be from the source or destination databases and it can be provided through a connection profile or a DDL file.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
SourceConnectionProfile(String)
Optional. Fully qualified (Uri) name of the source connection profile.
DestinationConnectionProfile(String)
Optional. Fully qualified (Uri) name of the destination connection profile.
Trait Implementations§
impl StructuralPartialEq for SeedFrom
Auto Trait Implementations§
impl Freeze for SeedFrom
impl RefUnwindSafe for SeedFrom
impl Send for SeedFrom
impl Sync for SeedFrom
impl Unpin for SeedFrom
impl UnwindSafe for SeedFrom
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