pub struct ListFindingsResult {
pub finding: Option<Finding>,
pub resource: Option<Resource>,
pub state_change: Option<String>,
}Expand description
Result containing the Finding and its StateChange.
This type is not used in any activity, and only used as part of another schema.
Fields§
§finding: Option<Finding>Finding matching the search request.
resource: Option<Resource>Output only. Resource that is associated with this finding.
state_change: Option<String>State change of the finding between the points in time.
Trait Implementations§
Source§impl Clone for ListFindingsResult
impl Clone for ListFindingsResult
Source§fn clone(&self) -> ListFindingsResult
fn clone(&self) -> ListFindingsResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListFindingsResult
impl Debug for ListFindingsResult
Source§impl Default for ListFindingsResult
impl Default for ListFindingsResult
Source§fn default() -> ListFindingsResult
fn default() -> ListFindingsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListFindingsResult
impl<'de> Deserialize<'de> for ListFindingsResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for ListFindingsResult
Auto Trait Implementations§
impl Freeze for ListFindingsResult
impl RefUnwindSafe for ListFindingsResult
impl Send for ListFindingsResult
impl Sync for ListFindingsResult
impl Unpin for ListFindingsResult
impl UnsafeUnpin for ListFindingsResult
impl UnwindSafe for ListFindingsResult
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