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