pub struct PolicyVersionIdentifier {
pub policy_name: Option<String>,
pub policy_version_id: Option<String>,
}Expand description
Information about the version of the policy associated with the resource.
Fields§
§policy_name: Option<String>The name of the policy.
policy_version_id: Option<String>The ID of the version of the policy associated with the resource.
Trait Implementations§
Source§impl Clone for PolicyVersionIdentifier
impl Clone for PolicyVersionIdentifier
Source§fn clone(&self) -> PolicyVersionIdentifier
fn clone(&self) -> PolicyVersionIdentifier
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 PolicyVersionIdentifier
impl Debug for PolicyVersionIdentifier
Source§impl Default for PolicyVersionIdentifier
impl Default for PolicyVersionIdentifier
Source§fn default() -> PolicyVersionIdentifier
fn default() -> PolicyVersionIdentifier
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PolicyVersionIdentifier
impl<'de> Deserialize<'de> for PolicyVersionIdentifier
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 PolicyVersionIdentifier
impl PartialEq for PolicyVersionIdentifier
Source§impl Serialize for PolicyVersionIdentifier
impl Serialize for PolicyVersionIdentifier
impl StructuralPartialEq for PolicyVersionIdentifier
Auto Trait Implementations§
impl Freeze for PolicyVersionIdentifier
impl RefUnwindSafe for PolicyVersionIdentifier
impl Send for PolicyVersionIdentifier
impl Sync for PolicyVersionIdentifier
impl Unpin for PolicyVersionIdentifier
impl UnwindSafe for PolicyVersionIdentifier
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