#[non_exhaustive]pub enum DataObject {
OracleRdbms(Box<OracleRdbms>),
MysqlRdbms(Box<MysqlRdbms>),
PostgresqlRdbms(Box<PostgresqlRdbms>),
SqlServerRdbms(Box<SqlServerRdbms>),
SalesforceOrg(Box<SalesforceOrg>),
MongodbCluster(Box<MongodbCluster>),
}
Expand description
The data object to populate with child data objects and metadata.
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.
OracleRdbms(Box<OracleRdbms>)
Oracle RDBMS to enrich with child data objects and metadata.
MysqlRdbms(Box<MysqlRdbms>)
MySQL RDBMS to enrich with child data objects and metadata.
PostgresqlRdbms(Box<PostgresqlRdbms>)
PostgreSQL RDBMS to enrich with child data objects and metadata.
SqlServerRdbms(Box<SqlServerRdbms>)
SQLServer RDBMS to enrich with child data objects and metadata.
SalesforceOrg(Box<SalesforceOrg>)
Salesforce organization to enrich with child data objects and metadata.
MongodbCluster(Box<MongodbCluster>)
MongoDB cluster to enrich with child data objects and metadata.
Trait Implementations§
Source§impl Clone for DataObject
impl Clone for DataObject
Source§fn clone(&self) -> DataObject
fn clone(&self) -> DataObject
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 DataObject
impl Debug for DataObject
Source§impl PartialEq for DataObject
impl PartialEq for DataObject
impl StructuralPartialEq for DataObject
Auto Trait Implementations§
impl Freeze for DataObject
impl RefUnwindSafe for DataObject
impl Send for DataObject
impl Sync for DataObject
impl Unpin for DataObject
impl UnwindSafe for DataObject
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