pub struct OptimizationRunRow {
pub run_id: Uuid,
pub org_id: Uuid,
pub project_id: Uuid,
pub status: String,
pub started_at: DateTime<Utc>,
pub finished_at: Option<DateTime<Utc>>,
pub cfg: HashMap<String, Value>,
pub initial_policy: HashMap<String, Value>,
}Fields§
§run_id: Uuid§org_id: Uuid§project_id: Uuid§status: String§started_at: DateTime<Utc>§finished_at: Option<DateTime<Utc>>§cfg: HashMap<String, Value>§initial_policy: HashMap<String, Value>Trait Implementations§
Source§impl Clone for OptimizationRunRow
impl Clone for OptimizationRunRow
Source§fn clone(&self) -> OptimizationRunRow
fn clone(&self) -> OptimizationRunRow
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 OptimizationRunRow
impl Debug for OptimizationRunRow
Source§impl<'de> Deserialize<'de> for OptimizationRunRow
impl<'de> Deserialize<'de> for OptimizationRunRow
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 OptimizationRunRow
impl RefUnwindSafe for OptimizationRunRow
impl Send for OptimizationRunRow
impl Sync for OptimizationRunRow
impl Unpin for OptimizationRunRow
impl UnwindSafe for OptimizationRunRow
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