pub struct BenchmarkMemoryProposal {
pub role: BenchmarkMemoryRole,
pub text: String,
pub task_family: Option<String>,
pub applies_to: Vec<String>,
pub does_not_apply_to: Vec<String>,
pub evidence_for: Vec<String>,
pub evidence_against: Vec<String>,
pub rationale: String,
pub confidence: f32,
}Fields§
§role: BenchmarkMemoryRole§text: String§task_family: Option<String>§applies_to: Vec<String>§does_not_apply_to: Vec<String>§evidence_for: Vec<String>§evidence_against: Vec<String>§rationale: String§confidence: f32Trait Implementations§
Source§impl Clone for BenchmarkMemoryProposal
impl Clone for BenchmarkMemoryProposal
Source§fn clone(&self) -> BenchmarkMemoryProposal
fn clone(&self) -> BenchmarkMemoryProposal
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 moreAuto Trait Implementations§
impl Freeze for BenchmarkMemoryProposal
impl RefUnwindSafe for BenchmarkMemoryProposal
impl Send for BenchmarkMemoryProposal
impl Sync for BenchmarkMemoryProposal
impl Unpin for BenchmarkMemoryProposal
impl UnsafeUnpin for BenchmarkMemoryProposal
impl UnwindSafe for BenchmarkMemoryProposal
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