pub struct AttemptRecord {
pub round: usize,
pub action: Action,
pub gid_context: Option<GidContext>,
pub test_outcome: Option<TestOutcome>,
pub feedback: String,
}Expand description
One round’s record in working memory.
Fields§
§round: usize§action: Action§gid_context: Option<GidContext>§test_outcome: Option<TestOutcome>§feedback: StringImmediate feedback text (edit result, read content, etc.)
Trait Implementations§
Source§impl Clone for AttemptRecord
impl Clone for AttemptRecord
Source§fn clone(&self) -> AttemptRecord
fn clone(&self) -> AttemptRecord
Returns a duplicate of the value. Read more
1.0.0 · 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 AttemptRecord
impl RefUnwindSafe for AttemptRecord
impl Send for AttemptRecord
impl Sync for AttemptRecord
impl Unpin for AttemptRecord
impl UnsafeUnpin for AttemptRecord
impl UnwindSafe for AttemptRecord
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