pub struct CapabilityMemoryRecord {
pub problem_signature: String,
pub solution_pattern: String,
pub input_shape: String,
pub output_shape: String,
pub constraints: CapabilityConstraints,
}Expand description
Capability memory entry — fingerprint stored after a run. The binary is destroyed; only the pattern, constraints, and metrics survive.
Fields§
§problem_signature: String§solution_pattern: String§input_shape: String§output_shape: String§constraints: CapabilityConstraintsTrait Implementations§
Source§impl Clone for CapabilityMemoryRecord
impl Clone for CapabilityMemoryRecord
Source§fn clone(&self) -> CapabilityMemoryRecord
fn clone(&self) -> CapabilityMemoryRecord
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 CapabilityMemoryRecord
impl Debug for CapabilityMemoryRecord
Source§impl<'de> Deserialize<'de> for CapabilityMemoryRecord
impl<'de> Deserialize<'de> for CapabilityMemoryRecord
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 CapabilityMemoryRecord
impl RefUnwindSafe for CapabilityMemoryRecord
impl Send for CapabilityMemoryRecord
impl Sync for CapabilityMemoryRecord
impl Unpin for CapabilityMemoryRecord
impl UnsafeUnpin for CapabilityMemoryRecord
impl UnwindSafe for CapabilityMemoryRecord
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