pub struct FindingSource {
pub detail: Option<FindingSourceDetail>,
pub type_: String,
}
Expand description
The source of the finding. This indicates how the access that generated the finding is granted. It is populated for Amazon S3 bucket findings.
Fields§
§detail: Option<FindingSourceDetail>
Includes details about how the access that generated the finding is granted. This is populated for Amazon S3 bucket findings.
type_: String
Indicates the type of access that generated the finding.
Trait Implementations§
Source§impl Clone for FindingSource
impl Clone for FindingSource
Source§fn clone(&self) -> FindingSource
fn clone(&self) -> FindingSource
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 FindingSource
impl Debug for FindingSource
Source§impl Default for FindingSource
impl Default for FindingSource
Source§fn default() -> FindingSource
fn default() -> FindingSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FindingSource
impl<'de> Deserialize<'de> for FindingSource
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 FindingSource
impl PartialEq for FindingSource
impl StructuralPartialEq for FindingSource
Auto Trait Implementations§
impl Freeze for FindingSource
impl RefUnwindSafe for FindingSource
impl Send for FindingSource
impl Sync for FindingSource
impl Unpin for FindingSource
impl UnwindSafe for FindingSource
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