#[non_exhaustive]pub enum ExcludedObjects {
OracleExcludedObjects(Box<OracleRdbms>),
MysqlExcludedObjects(Box<MysqlRdbms>),
PostgresqlExcludedObjects(Box<PostgresqlRdbms>),
SqlServerExcludedObjects(Box<SqlServerRdbms>),
SalesforceExcludedObjects(Box<SalesforceOrg>),
MongodbExcludedObjects(Box<MongodbCluster>),
}
Expand description
List of objects to exclude.
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.
OracleExcludedObjects(Box<OracleRdbms>)
Oracle data source objects to avoid backfilling.
MysqlExcludedObjects(Box<MysqlRdbms>)
MySQL data source objects to avoid backfilling.
PostgresqlExcludedObjects(Box<PostgresqlRdbms>)
PostgreSQL data source objects to avoid backfilling.
SqlServerExcludedObjects(Box<SqlServerRdbms>)
SQLServer data source objects to avoid backfilling
SalesforceExcludedObjects(Box<SalesforceOrg>)
Salesforce data source objects to avoid backfilling
MongodbExcludedObjects(Box<MongodbCluster>)
MongoDB data source objects to avoid backfilling
Trait Implementations§
Source§impl Clone for ExcludedObjects
impl Clone for ExcludedObjects
Source§fn clone(&self) -> ExcludedObjects
fn clone(&self) -> ExcludedObjects
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 ExcludedObjects
impl Debug for ExcludedObjects
Source§impl PartialEq for ExcludedObjects
impl PartialEq for ExcludedObjects
impl StructuralPartialEq for ExcludedObjects
Auto Trait Implementations§
impl Freeze for ExcludedObjects
impl RefUnwindSafe for ExcludedObjects
impl Send for ExcludedObjects
impl Sync for ExcludedObjects
impl Unpin for ExcludedObjects
impl UnwindSafe for ExcludedObjects
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