#[non_exhaustive]pub struct AwsScanOptionsResponse {
pub data: Option<AwsScanOptionsData>,
pub additional_properties: BTreeMap<String, Value>,
/* private fields */
}
Expand description
Response object that includes the scan options of an AWS account.
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.data: Option<AwsScanOptionsData>
Single AWS Scan Options entry.
additional_properties: BTreeMap<String, Value>
Implementations§
Source§impl AwsScanOptionsResponse
impl AwsScanOptionsResponse
pub fn new() -> AwsScanOptionsResponse
pub fn data(self, value: AwsScanOptionsData) -> Self
pub fn additional_properties(self, value: BTreeMap<String, Value>) -> Self
Trait Implementations§
Source§impl Clone for AwsScanOptionsResponse
impl Clone for AwsScanOptionsResponse
Source§fn clone(&self) -> AwsScanOptionsResponse
fn clone(&self) -> AwsScanOptionsResponse
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 AwsScanOptionsResponse
impl Debug for AwsScanOptionsResponse
Source§impl Default for AwsScanOptionsResponse
impl Default for AwsScanOptionsResponse
Source§impl<'de> Deserialize<'de> for AwsScanOptionsResponse
impl<'de> Deserialize<'de> for AwsScanOptionsResponse
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 AwsScanOptionsResponse
impl PartialEq for AwsScanOptionsResponse
Source§impl Serialize for AwsScanOptionsResponse
impl Serialize for AwsScanOptionsResponse
impl StructuralPartialEq for AwsScanOptionsResponse
Auto Trait Implementations§
impl Freeze for AwsScanOptionsResponse
impl RefUnwindSafe for AwsScanOptionsResponse
impl Send for AwsScanOptionsResponse
impl Sync for AwsScanOptionsResponse
impl Unpin for AwsScanOptionsResponse
impl UnwindSafe for AwsScanOptionsResponse
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