pub struct PolicyTuningRecord {
pub tuning_id: String,
pub created_at: SystemTime,
pub overlay: PolicyOverlay,
pub action: PolicyTuningAction,
pub prior_policy: EnginePolicy,
pub projected_policy: EnginePolicy,
}Fields§
§tuning_id: String§created_at: SystemTime§overlay: PolicyOverlay§action: PolicyTuningAction§prior_policy: EnginePolicy§projected_policy: EnginePolicyTrait Implementations§
Source§impl Clone for PolicyTuningRecord
impl Clone for PolicyTuningRecord
Source§fn clone(&self) -> PolicyTuningRecord
fn clone(&self) -> PolicyTuningRecord
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 PolicyTuningRecord
impl Debug for PolicyTuningRecord
Source§impl<'de> Deserialize<'de> for PolicyTuningRecord
impl<'de> Deserialize<'de> for PolicyTuningRecord
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 PolicyTuningRecord
impl PartialEq for PolicyTuningRecord
Source§fn eq(&self, other: &PolicyTuningRecord) -> bool
fn eq(&self, other: &PolicyTuningRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PolicyTuningRecord
impl Serialize for PolicyTuningRecord
impl StructuralPartialEq for PolicyTuningRecord
Auto Trait Implementations§
impl Freeze for PolicyTuningRecord
impl RefUnwindSafe for PolicyTuningRecord
impl Send for PolicyTuningRecord
impl Sync for PolicyTuningRecord
impl Unpin for PolicyTuningRecord
impl UnsafeUnpin for PolicyTuningRecord
impl UnwindSafe for PolicyTuningRecord
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