pub struct ImportFindingsError {
pub error_code: String,
pub error_message: String,
pub id: String,
}
Expand description
The list of the findings that cannot be imported. For each finding, the list provides the error.
Fields§
§error_code: String
The code of the error returned by the BatchImportFindings
operation.
error_message: String
The message of the error returned by the BatchImportFindings
operation.
id: String
The identifier of the finding that could not be updated.
Trait Implementations§
Source§impl Clone for ImportFindingsError
impl Clone for ImportFindingsError
Source§fn clone(&self) -> ImportFindingsError
fn clone(&self) -> ImportFindingsError
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 ImportFindingsError
impl Debug for ImportFindingsError
Source§impl Default for ImportFindingsError
impl Default for ImportFindingsError
Source§fn default() -> ImportFindingsError
fn default() -> ImportFindingsError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImportFindingsError
impl<'de> Deserialize<'de> for ImportFindingsError
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 ImportFindingsError
impl PartialEq for ImportFindingsError
impl StructuralPartialEq for ImportFindingsError
Auto Trait Implementations§
impl Freeze for ImportFindingsError
impl RefUnwindSafe for ImportFindingsError
impl Send for ImportFindingsError
impl Sync for ImportFindingsError
impl Unpin for ImportFindingsError
impl UnwindSafe for ImportFindingsError
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