#[non_exhaustive]pub struct StartScanRunRequest {
pub name: String,
/* private fields */
}Expand description
Request for the StartScanRun method.
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 ScanConfig to be used. The name follows the format of ‘projects/{projectId}/scanConfigs/{scanConfigId}’.
Implementations§
Trait Implementations§
Source§impl Clone for StartScanRunRequest
impl Clone for StartScanRunRequest
Source§fn clone(&self) -> StartScanRunRequest
fn clone(&self) -> StartScanRunRequest
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 StartScanRunRequest
impl Debug for StartScanRunRequest
Source§impl Default for StartScanRunRequest
impl Default for StartScanRunRequest
Source§fn default() -> StartScanRunRequest
fn default() -> StartScanRunRequest
Returns the “default value” for a type. Read more
Source§impl Message for StartScanRunRequest
impl Message for StartScanRunRequest
Source§impl PartialEq for StartScanRunRequest
impl PartialEq for StartScanRunRequest
impl StructuralPartialEq for StartScanRunRequest
Auto Trait Implementations§
impl Freeze for StartScanRunRequest
impl RefUnwindSafe for StartScanRunRequest
impl Send for StartScanRunRequest
impl Sync for StartScanRunRequest
impl Unpin for StartScanRunRequest
impl UnwindSafe for StartScanRunRequest
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