#[non_exhaustive]pub struct AffectedResources {
pub count: i64,
/* private fields */
}Expand description
Details about resources affected by this finding.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.count: i64The count of resources affected by the finding.
Implementations§
Trait Implementations§
Source§impl Clone for AffectedResources
impl Clone for AffectedResources
Source§fn clone(&self) -> AffectedResources
fn clone(&self) -> AffectedResources
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 AffectedResources
impl Debug for AffectedResources
Source§impl Default for AffectedResources
impl Default for AffectedResources
Source§fn default() -> AffectedResources
fn default() -> AffectedResources
Returns the “default value” for a type. Read more
Source§impl Message for AffectedResources
impl Message for AffectedResources
Source§impl PartialEq for AffectedResources
impl PartialEq for AffectedResources
impl StructuralPartialEq for AffectedResources
Auto Trait Implementations§
impl Freeze for AffectedResources
impl RefUnwindSafe for AffectedResources
impl Send for AffectedResources
impl Sync for AffectedResources
impl Unpin for AffectedResources
impl UnwindSafe for AffectedResources
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