#[non_exhaustive]pub enum Profile {
OracleProfile(Box<OracleProfile>),
GcsProfile(Box<GcsProfile>),
MysqlProfile(Box<MysqlProfile>),
BigqueryProfile(Box<BigQueryProfile>),
PostgresqlProfile(Box<PostgresqlProfile>),
SqlServerProfile(Box<SqlServerProfile>),
SalesforceProfile(Box<SalesforceProfile>),
MongodbProfile(Box<MongodbProfile>),
}
Expand description
Connection configuration for the ConnectionProfile.
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.
OracleProfile(Box<OracleProfile>)
Oracle ConnectionProfile configuration.
GcsProfile(Box<GcsProfile>)
Cloud Storage ConnectionProfile configuration.
MysqlProfile(Box<MysqlProfile>)
MySQL ConnectionProfile configuration.
BigqueryProfile(Box<BigQueryProfile>)
BigQuery Connection Profile configuration.
PostgresqlProfile(Box<PostgresqlProfile>)
PostgreSQL Connection Profile configuration.
SqlServerProfile(Box<SqlServerProfile>)
SQLServer Connection Profile configuration.
SalesforceProfile(Box<SalesforceProfile>)
Salesforce Connection Profile configuration.
MongodbProfile(Box<MongodbProfile>)
MongoDB Connection Profile configuration.
Trait Implementations§
impl StructuralPartialEq for Profile
Auto Trait Implementations§
impl Freeze for Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnwindSafe for Profile
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