#[non_exhaustive]pub struct GetDataScanJobRequest {
pub name: String,
pub view: DataScanJobView,
/* private fields */
}Expand description
Get DataScanJob 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 DataScanJob:
projects/{project}/locations/{location_id}/dataScans/{data_scan_id}/jobs/{data_scan_job_id}
where project refers to a project_id or project_number and
location_id refers to a Google Cloud region.
view: DataScanJobViewOptional. Select the DataScanJob view to return. Defaults to BASIC.
Implementations§
Trait Implementations§
Source§impl Clone for GetDataScanJobRequest
impl Clone for GetDataScanJobRequest
Source§fn clone(&self) -> GetDataScanJobRequest
fn clone(&self) -> GetDataScanJobRequest
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 GetDataScanJobRequest
impl Debug for GetDataScanJobRequest
Source§impl Default for GetDataScanJobRequest
impl Default for GetDataScanJobRequest
Source§fn default() -> GetDataScanJobRequest
fn default() -> GetDataScanJobRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetDataScanJobRequest
impl Message for GetDataScanJobRequest
Source§impl PartialEq for GetDataScanJobRequest
impl PartialEq for GetDataScanJobRequest
impl StructuralPartialEq for GetDataScanJobRequest
Auto Trait Implementations§
impl Freeze for GetDataScanJobRequest
impl RefUnwindSafe for GetDataScanJobRequest
impl Send for GetDataScanJobRequest
impl Sync for GetDataScanJobRequest
impl Unpin for GetDataScanJobRequest
impl UnwindSafe for GetDataScanJobRequest
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