pub struct NativeExecutionIdentity {
pub backend: String,
pub version: String,
pub source_url: String,
pub expected_commit: String,
pub actual_commit: String,
pub source_mode: String,
}Expand description
Native backend details for solver, policy, analytics, or model execution.
Fields§
§backend: StringNative backend name, for example CVC5, OR-Tools:cp_sat, or HiGHS.
version: StringNative backend version as reported by the linked library.
source_url: StringSource URL for the native dependency when known.
expected_commit: StringExpected pinned source commit or release identifier.
actual_commit: StringActual source commit or release identifier used at build time.
source_mode: StringHow the native backend was sourced, for example vendored or external.
Implementations§
Trait Implementations§
Source§impl Clone for NativeExecutionIdentity
impl Clone for NativeExecutionIdentity
Source§fn clone(&self) -> NativeExecutionIdentity
fn clone(&self) -> NativeExecutionIdentity
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 NativeExecutionIdentity
impl Debug for NativeExecutionIdentity
Source§impl<'de> Deserialize<'de> for NativeExecutionIdentity
impl<'de> Deserialize<'de> for NativeExecutionIdentity
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 NativeExecutionIdentity
impl PartialEq for NativeExecutionIdentity
Source§fn eq(&self, other: &NativeExecutionIdentity) -> bool
fn eq(&self, other: &NativeExecutionIdentity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NativeExecutionIdentity
impl Serialize for NativeExecutionIdentity
impl Eq for NativeExecutionIdentity
impl StructuralPartialEq for NativeExecutionIdentity
Auto Trait Implementations§
impl Freeze for NativeExecutionIdentity
impl RefUnwindSafe for NativeExecutionIdentity
impl Send for NativeExecutionIdentity
impl Sync for NativeExecutionIdentity
impl Unpin for NativeExecutionIdentity
impl UnsafeUnpin for NativeExecutionIdentity
impl UnwindSafe for NativeExecutionIdentity
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.