#[non_exhaustive]pub struct DataDiscoveryResult {
pub bigquery_publishing: Option<BigQueryPublishing>,
pub scan_statistics: Option<ScanStatistics>,
/* private fields */
}Expand description
The output of a data discovery scan.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.bigquery_publishing: Option<BigQueryPublishing>Output only. Configuration for metadata publishing.
scan_statistics: Option<ScanStatistics>Output only. Describes result statistics of a data scan discovery job.
Implementations§
Source§impl DataDiscoveryResult
impl DataDiscoveryResult
pub fn new() -> Self
Sourcepub fn set_bigquery_publishing<T>(self, v: T) -> Selfwhere
T: Into<BigQueryPublishing>,
pub fn set_bigquery_publishing<T>(self, v: T) -> Selfwhere
T: Into<BigQueryPublishing>,
Sets the value of bigquery_publishing.
Sourcepub fn set_or_clear_bigquery_publishing<T>(self, v: Option<T>) -> Selfwhere
T: Into<BigQueryPublishing>,
pub fn set_or_clear_bigquery_publishing<T>(self, v: Option<T>) -> Selfwhere
T: Into<BigQueryPublishing>,
Sets or clears the value of bigquery_publishing.
Sourcepub fn set_scan_statistics<T>(self, v: T) -> Selfwhere
T: Into<ScanStatistics>,
pub fn set_scan_statistics<T>(self, v: T) -> Selfwhere
T: Into<ScanStatistics>,
Sets the value of scan_statistics.
Sourcepub fn set_or_clear_scan_statistics<T>(self, v: Option<T>) -> Selfwhere
T: Into<ScanStatistics>,
pub fn set_or_clear_scan_statistics<T>(self, v: Option<T>) -> Selfwhere
T: Into<ScanStatistics>,
Sets or clears the value of scan_statistics.
Trait Implementations§
Source§impl Clone for DataDiscoveryResult
impl Clone for DataDiscoveryResult
Source§fn clone(&self) -> DataDiscoveryResult
fn clone(&self) -> DataDiscoveryResult
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 DataDiscoveryResult
impl Debug for DataDiscoveryResult
Source§impl Default for DataDiscoveryResult
impl Default for DataDiscoveryResult
Source§fn default() -> DataDiscoveryResult
fn default() -> DataDiscoveryResult
Returns the “default value” for a type. Read more
Source§impl Message for DataDiscoveryResult
impl Message for DataDiscoveryResult
Source§impl PartialEq for DataDiscoveryResult
impl PartialEq for DataDiscoveryResult
impl StructuralPartialEq for DataDiscoveryResult
Auto Trait Implementations§
impl Freeze for DataDiscoveryResult
impl RefUnwindSafe for DataDiscoveryResult
impl Send for DataDiscoveryResult
impl Sync for DataDiscoveryResult
impl Unpin for DataDiscoveryResult
impl UnwindSafe for DataDiscoveryResult
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