pub struct ReplayAuditPolicy {
pub env: String,
pub approval_provided: bool,
pub mode: String,
}Expand description
Policy audit section.
Fields§
§env: StringEnvironment (dev/staging/prod).
approval_provided: boolWhether approval token was provided.
mode: StringReplay mode.
Trait Implementations§
Source§impl Clone for ReplayAuditPolicy
impl Clone for ReplayAuditPolicy
Source§fn clone(&self) -> ReplayAuditPolicy
fn clone(&self) -> ReplayAuditPolicy
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 ReplayAuditPolicy
impl Debug for ReplayAuditPolicy
Source§impl<'de> Deserialize<'de> for ReplayAuditPolicy
impl<'de> Deserialize<'de> for ReplayAuditPolicy
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 ReplayAuditPolicy
impl PartialEq for ReplayAuditPolicy
Source§impl Serialize for ReplayAuditPolicy
impl Serialize for ReplayAuditPolicy
impl Eq for ReplayAuditPolicy
impl StructuralPartialEq for ReplayAuditPolicy
Auto Trait Implementations§
impl Freeze for ReplayAuditPolicy
impl RefUnwindSafe for ReplayAuditPolicy
impl Send for ReplayAuditPolicy
impl Sync for ReplayAuditPolicy
impl Unpin for ReplayAuditPolicy
impl UnwindSafe for ReplayAuditPolicy
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