pub struct PolicyVersion {
pub create_date: Option<DateTime<Utc>>,
pub document: Option<String>,
pub is_default_version: Option<bool>,
pub version_id: Option<String>,
}Expand description
IAM PolicyVersion.
Fields§
§create_date: Option<DateTime<Utc>>§document: Option<String>§is_default_version: Option<bool>§version_id: Option<String>Trait Implementations§
Source§impl Clone for PolicyVersion
impl Clone for PolicyVersion
Source§fn clone(&self) -> PolicyVersion
fn clone(&self) -> PolicyVersion
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 PolicyVersion
impl Debug for PolicyVersion
Source§impl Default for PolicyVersion
impl Default for PolicyVersion
Source§fn default() -> PolicyVersion
fn default() -> PolicyVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PolicyVersion
impl<'de> Deserialize<'de> for PolicyVersion
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
Auto Trait Implementations§
impl Freeze for PolicyVersion
impl RefUnwindSafe for PolicyVersion
impl Send for PolicyVersion
impl Sync for PolicyVersion
impl Unpin for PolicyVersion
impl UnsafeUnpin for PolicyVersion
impl UnwindSafe for PolicyVersion
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