#[non_exhaustive]pub struct GetDataScanRequest {
pub name: String,
pub view: DataScanView,
/* private fields */
}Expand description
Get 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.
view: DataScanViewOptional. Select the DataScan view to return. Defaults to BASIC.
Implementations§
Trait Implementations§
Source§impl Clone for GetDataScanRequest
impl Clone for GetDataScanRequest
Source§fn clone(&self) -> GetDataScanRequest
fn clone(&self) -> GetDataScanRequest
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 GetDataScanRequest
impl Debug for GetDataScanRequest
Source§impl Default for GetDataScanRequest
impl Default for GetDataScanRequest
Source§fn default() -> GetDataScanRequest
fn default() -> GetDataScanRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetDataScanRequest
impl Message for GetDataScanRequest
Source§impl PartialEq for GetDataScanRequest
impl PartialEq for GetDataScanRequest
impl StructuralPartialEq for GetDataScanRequest
Auto Trait Implementations§
impl Freeze for GetDataScanRequest
impl RefUnwindSafe for GetDataScanRequest
impl Send for GetDataScanRequest
impl Sync for GetDataScanRequest
impl Unpin for GetDataScanRequest
impl UnwindSafe for GetDataScanRequest
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