pub struct FrameworkData {
pub framework_name: String,
pub framework_arn: String,
pub framework_description: String,
pub framework_controls: Value,
pub creation_time: DateTime<Utc>,
pub deployment_status: String,
pub number_of_controls: i32,
}Expand description
An audit framework.
Fields§
§framework_name: String§framework_arn: String§framework_description: String§framework_controls: Value§creation_time: DateTime<Utc>§deployment_status: String§number_of_controls: i32Trait Implementations§
Source§impl Clone for FrameworkData
impl Clone for FrameworkData
Source§fn clone(&self) -> FrameworkData
fn clone(&self) -> FrameworkData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FrameworkData
impl Debug for FrameworkData
Source§impl From<&FrameworkData> for FrameworkView
impl From<&FrameworkData> for FrameworkView
Source§fn from(f: &FrameworkData) -> Self
fn from(f: &FrameworkData) -> Self
Converts to this type from the input type.
Source§impl From<FrameworkView> for FrameworkData
impl From<FrameworkView> for FrameworkData
Source§fn from(v: FrameworkView) -> Self
fn from(v: FrameworkView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FrameworkData
impl RefUnwindSafe for FrameworkData
impl Send for FrameworkData
impl Sync for FrameworkData
impl Unpin for FrameworkData
impl UnsafeUnpin for FrameworkData
impl UnwindSafe for FrameworkData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.