pub struct GoogleCloudDataplexV1DataDiscoveryResultScanStatistics {
pub data_processed_bytes: Option<i64>,
pub files_excluded: Option<i32>,
pub filesets_created: Option<i32>,
pub filesets_deleted: Option<i32>,
pub filesets_updated: Option<i32>,
pub scanned_file_count: Option<i32>,
pub tables_created: Option<i32>,
pub tables_deleted: Option<i32>,
pub tables_updated: Option<i32>,
}Expand description
Describes result statistics of a data scan discovery job.
This type is not used in any activity, and only used as part of another schema.
Fields§
§data_processed_bytes: Option<i64>The data processed in bytes.
files_excluded: Option<i32>The number of files excluded.
filesets_created: Option<i32>The number of filesets created.
filesets_deleted: Option<i32>The number of filesets deleted.
filesets_updated: Option<i32>The number of filesets updated.
scanned_file_count: Option<i32>The number of files scanned.
tables_created: Option<i32>The number of tables created.
tables_deleted: Option<i32>The number of tables deleted.
tables_updated: Option<i32>The number of tables updated.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
impl Clone for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
Source§fn clone(&self) -> GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
fn clone(&self) -> GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
impl Default for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
Source§fn default() -> GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
fn default() -> GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
impl RefUnwindSafe for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
impl Send for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
impl Sync for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
impl Unpin for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
impl UnsafeUnpin for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
impl UnwindSafe for GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
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