pub struct BatchUpdateFindingsResponse {
pub processed_findings: Vec<AwsSecurityFindingIdentifier>,
pub unprocessed_findings: Vec<BatchUpdateFindingsUnprocessedFinding>,
}Fields§
§processed_findings: Vec<AwsSecurityFindingIdentifier>The list of findings that were updated successfully.
unprocessed_findings: Vec<BatchUpdateFindingsUnprocessedFinding>The list of findings that were not updated.
Trait Implementations§
Source§impl Clone for BatchUpdateFindingsResponse
impl Clone for BatchUpdateFindingsResponse
Source§fn clone(&self) -> BatchUpdateFindingsResponse
fn clone(&self) -> BatchUpdateFindingsResponse
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 BatchUpdateFindingsResponse
impl Debug for BatchUpdateFindingsResponse
Source§impl Default for BatchUpdateFindingsResponse
impl Default for BatchUpdateFindingsResponse
Source§fn default() -> BatchUpdateFindingsResponse
fn default() -> BatchUpdateFindingsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchUpdateFindingsResponse
impl<'de> Deserialize<'de> for BatchUpdateFindingsResponse
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
Source§impl PartialEq for BatchUpdateFindingsResponse
impl PartialEq for BatchUpdateFindingsResponse
Source§fn eq(&self, other: &BatchUpdateFindingsResponse) -> bool
fn eq(&self, other: &BatchUpdateFindingsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchUpdateFindingsResponse
Auto Trait Implementations§
impl Freeze for BatchUpdateFindingsResponse
impl RefUnwindSafe for BatchUpdateFindingsResponse
impl Send for BatchUpdateFindingsResponse
impl Sync for BatchUpdateFindingsResponse
impl Unpin for BatchUpdateFindingsResponse
impl UnsafeUnpin for BatchUpdateFindingsResponse
impl UnwindSafe for BatchUpdateFindingsResponse
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