pub struct RunIdentity {Show 14 fields
pub aurum_version: Option<String>,
pub commit: Option<String>,
pub provider: Option<String>,
pub backend_class: Option<String>,
pub model_id: Option<String>,
pub model_digest: Option<String>,
pub support_tier: Option<String>,
pub language: Option<String>,
pub timestamps: bool,
pub hardware_profile: Option<String>,
pub os: Option<String>,
pub cold_warm: Option<String>,
pub corpus_version: Option<String>,
pub normalization_policy: Option<String>,
}Expand description
Machine identity for a retained report (no serial numbers / usernames).
Fields§
§aurum_version: Option<String>§commit: Option<String>§provider: Option<String>§backend_class: Option<String>§model_id: Option<String>§model_digest: Option<String>§support_tier: Option<String>§language: Option<String>§timestamps: bool§hardware_profile: Option<String>§os: Option<String>§cold_warm: Option<String>§corpus_version: Option<String>§normalization_policy: Option<String>Trait 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 Default for RunIdentity
impl Default for RunIdentity
Source§fn default() -> RunIdentity
fn default() -> RunIdentity
Returns the “default value” for a type. Read more
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
Source§impl PartialEq for RunIdentity
impl PartialEq for RunIdentity
Source§impl Serialize for RunIdentity
impl Serialize for RunIdentity
impl StructuralPartialEq for RunIdentity
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more