#[non_exhaustive]pub struct PostScanActionsResult {
pub bigquery_export_result: Option<BigQueryExportResult>,
/* private fields */
}Expand description
The result of post scan actions of DataProfileScan job.
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_export_result: Option<BigQueryExportResult>Output only. The result of BigQuery export post scan action.
Implementations§
Source§impl PostScanActionsResult
impl PostScanActionsResult
pub fn new() -> Self
Sourcepub fn set_bigquery_export_result<T>(self, v: T) -> Selfwhere
T: Into<BigQueryExportResult>,
pub fn set_bigquery_export_result<T>(self, v: T) -> Selfwhere
T: Into<BigQueryExportResult>,
Sets the value of bigquery_export_result.
Sourcepub fn set_or_clear_bigquery_export_result<T>(self, v: Option<T>) -> Selfwhere
T: Into<BigQueryExportResult>,
pub fn set_or_clear_bigquery_export_result<T>(self, v: Option<T>) -> Selfwhere
T: Into<BigQueryExportResult>,
Sets or clears the value of bigquery_export_result.
Trait Implementations§
Source§impl Clone for PostScanActionsResult
impl Clone for PostScanActionsResult
Source§fn clone(&self) -> PostScanActionsResult
fn clone(&self) -> PostScanActionsResult
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 PostScanActionsResult
impl Debug for PostScanActionsResult
Source§impl Default for PostScanActionsResult
impl Default for PostScanActionsResult
Source§fn default() -> PostScanActionsResult
fn default() -> PostScanActionsResult
Returns the “default value” for a type. Read more
Source§impl Message for PostScanActionsResult
impl Message for PostScanActionsResult
Source§impl PartialEq for PostScanActionsResult
impl PartialEq for PostScanActionsResult
impl StructuralPartialEq for PostScanActionsResult
Auto Trait Implementations§
impl Freeze for PostScanActionsResult
impl RefUnwindSafe for PostScanActionsResult
impl Send for PostScanActionsResult
impl Sync for PostScanActionsResult
impl Unpin for PostScanActionsResult
impl UnwindSafe for PostScanActionsResult
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