pub struct PermissionVersionRecord {
pub version: u32,
pub policy_template: String,
pub is_default: bool,
pub creation_time: DateTime<Utc>,
pub last_updated_time: DateTime<Utc>,
}Expand description
A single version of a customer-managed permission.
Fields§
§version: u32§policy_template: String§is_default: bool§creation_time: DateTime<Utc>§last_updated_time: DateTime<Utc>Trait Implementations§
Source§impl Clone for PermissionVersionRecord
impl Clone for PermissionVersionRecord
Source§fn clone(&self) -> PermissionVersionRecord
fn clone(&self) -> PermissionVersionRecord
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 PermissionVersionRecord
impl Debug for PermissionVersionRecord
Source§impl<'de> Deserialize<'de> for PermissionVersionRecord
impl<'de> Deserialize<'de> for PermissionVersionRecord
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 PermissionVersionRecord
impl RefUnwindSafe for PermissionVersionRecord
impl Send for PermissionVersionRecord
impl Sync for PermissionVersionRecord
impl Unpin for PermissionVersionRecord
impl UnsafeUnpin for PermissionVersionRecord
impl UnwindSafe for PermissionVersionRecord
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