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