#[non_exhaustive]pub struct BatchImportFindingsOutput { /* private fields */ }
Implementations§
source§impl BatchImportFindingsOutput
impl BatchImportFindingsOutput
sourcepub fn failed_count(&self) -> i32
pub fn failed_count(&self) -> i32
The number of findings that failed to import.
sourcepub fn success_count(&self) -> i32
pub fn success_count(&self) -> i32
The number of findings that were successfully imported.
sourcepub fn failed_findings(&self) -> Option<&[ImportFindingsError]>
pub fn failed_findings(&self) -> Option<&[ImportFindingsError]>
The list of findings that failed to import.
source§impl BatchImportFindingsOutput
impl BatchImportFindingsOutput
sourcepub fn builder() -> BatchImportFindingsOutputBuilder
pub fn builder() -> BatchImportFindingsOutputBuilder
Creates a new builder-style object to manufacture BatchImportFindingsOutput
.
Trait Implementations§
source§impl Clone for BatchImportFindingsOutput
impl Clone for BatchImportFindingsOutput
source§fn clone(&self) -> BatchImportFindingsOutput
fn clone(&self) -> BatchImportFindingsOutput
Returns a copy 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 BatchImportFindingsOutput
impl Debug for BatchImportFindingsOutput
source§impl PartialEq<BatchImportFindingsOutput> for BatchImportFindingsOutput
impl PartialEq<BatchImportFindingsOutput> for BatchImportFindingsOutput
source§fn eq(&self, other: &BatchImportFindingsOutput) -> bool
fn eq(&self, other: &BatchImportFindingsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for BatchImportFindingsOutput
impl RequestId for BatchImportFindingsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for BatchImportFindingsOutput
Auto Trait Implementations§
impl RefUnwindSafe for BatchImportFindingsOutput
impl Send for BatchImportFindingsOutput
impl Sync for BatchImportFindingsOutput
impl Unpin for BatchImportFindingsOutput
impl UnwindSafe for BatchImportFindingsOutput
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