pub struct RelatedFinding {
pub id: String,
pub product_arn: String,
}
Expand description
Details about a related finding.
Fields§
§id: String
The product-generated identifier for a related finding.
product_arn: String
The ARN of the product that generated a related finding.
Trait Implementations§
Source§impl Clone for RelatedFinding
impl Clone for RelatedFinding
Source§fn clone(&self) -> RelatedFinding
fn clone(&self) -> RelatedFinding
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 RelatedFinding
impl Debug for RelatedFinding
Source§impl Default for RelatedFinding
impl Default for RelatedFinding
Source§fn default() -> RelatedFinding
fn default() -> RelatedFinding
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RelatedFinding
impl<'de> Deserialize<'de> for RelatedFinding
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 RelatedFinding
impl PartialEq for RelatedFinding
Source§impl Serialize for RelatedFinding
impl Serialize for RelatedFinding
impl StructuralPartialEq for RelatedFinding
Auto Trait Implementations§
impl Freeze for RelatedFinding
impl RefUnwindSafe for RelatedFinding
impl Send for RelatedFinding
impl Sync for RelatedFinding
impl Unpin for RelatedFinding
impl UnwindSafe for RelatedFinding
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