#[non_exhaustive]pub struct RunDataScanRequest {
pub name: String,
/* private fields */
}Expand description
Run DataScan Request
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.name: StringRequired. The resource name of the DataScan:
projects/{project}/locations/{location_id}/dataScans/{data_scan_id}.
where project refers to a project_id or project_number and
location_id refers to a Google Cloud region.
Only OnDemand data scans are allowed.
Implementations§
Trait Implementations§
Source§impl Clone for RunDataScanRequest
impl Clone for RunDataScanRequest
Source§fn clone(&self) -> RunDataScanRequest
fn clone(&self) -> RunDataScanRequest
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 RunDataScanRequest
impl Debug for RunDataScanRequest
Source§impl Default for RunDataScanRequest
impl Default for RunDataScanRequest
Source§fn default() -> RunDataScanRequest
fn default() -> RunDataScanRequest
Returns the “default value” for a type. Read more
Source§impl Message for RunDataScanRequest
impl Message for RunDataScanRequest
Source§impl PartialEq for RunDataScanRequest
impl PartialEq for RunDataScanRequest
impl StructuralPartialEq for RunDataScanRequest
Auto Trait Implementations§
impl Freeze for RunDataScanRequest
impl RefUnwindSafe for RunDataScanRequest
impl Send for RunDataScanRequest
impl Sync for RunDataScanRequest
impl Unpin for RunDataScanRequest
impl UnwindSafe for RunDataScanRequest
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