#[non_exhaustive]pub struct GetFindingOptionalParams {
pub snapshot_timestamp: Option<i64>,
}
Expand description
GetFindingOptionalParams is a struct for passing parameters to the method SecurityMonitoringAPI::get_finding
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.snapshot_timestamp: Option<i64>
Return the finding for a given snapshot of time (Unix ms).
Implementations§
Source§impl GetFindingOptionalParams
impl GetFindingOptionalParams
Sourcepub fn snapshot_timestamp(self, value: i64) -> Self
pub fn snapshot_timestamp(self, value: i64) -> Self
Return the finding for a given snapshot of time (Unix ms).
Trait Implementations§
Source§impl Clone for GetFindingOptionalParams
impl Clone for GetFindingOptionalParams
Source§fn clone(&self) -> GetFindingOptionalParams
fn clone(&self) -> GetFindingOptionalParams
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 GetFindingOptionalParams
impl Debug for GetFindingOptionalParams
Source§impl Default for GetFindingOptionalParams
impl Default for GetFindingOptionalParams
Source§fn default() -> GetFindingOptionalParams
fn default() -> GetFindingOptionalParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetFindingOptionalParams
impl RefUnwindSafe for GetFindingOptionalParams
impl Send for GetFindingOptionalParams
impl Sync for GetFindingOptionalParams
impl Unpin for GetFindingOptionalParams
impl UnwindSafe for GetFindingOptionalParams
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