#[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 that has been enriched by the discover API call.
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>)
Enriched Oracle RDBMS object.
MysqlRdbms(Box<MysqlRdbms>)
Enriched MySQL RDBMS object.
PostgresqlRdbms(Box<PostgresqlRdbms>)
Enriched PostgreSQL RDBMS object.
SqlServerRdbms(Box<SqlServerRdbms>)
Enriched SQLServer RDBMS object.
SalesforceOrg(Box<SalesforceOrg>)
Enriched Salesforce organization.
MongodbCluster(Box<MongodbCluster>)
Enriched MongoDB cluster.
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