pub struct RunIdentity {
pub run_id: String,
pub candidate_id: String,
pub task_id: String,
pub trace_id: String,
pub started_at: String,
}Expand description
Identity of an experiment run (who/what/when).
Fields§
§run_id: String§candidate_id: String§task_id: String§trace_id: String§started_at: StringTrait Implementations§
Source§impl Clone for RunIdentity
impl Clone for RunIdentity
Source§fn clone(&self) -> RunIdentity
fn clone(&self) -> RunIdentity
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 RunIdentity
impl Debug for RunIdentity
Source§impl<'de> Deserialize<'de> for RunIdentity
impl<'de> Deserialize<'de> for RunIdentity
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 RunIdentity
impl RefUnwindSafe for RunIdentity
impl Send for RunIdentity
impl Sync for RunIdentity
impl Unpin for RunIdentity
impl UnsafeUnpin for RunIdentity
impl UnwindSafe for RunIdentity
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