pub struct MetaLearningSummary {
pub total_levels: usize,
pub total_knowledge: usize,
pub total_modifications: usize,
pub safety_violations: usize,
pub learning_iterations: u64,
}Expand description
Statistics about meta-learning performance
Fields§
§total_levels: usize§total_knowledge: usize§total_modifications: usize§safety_violations: usize§learning_iterations: u64Trait Implementations§
Source§impl Clone for MetaLearningSummary
impl Clone for MetaLearningSummary
Source§fn clone(&self) -> MetaLearningSummary
fn clone(&self) -> MetaLearningSummary
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 moreSource§impl Debug for MetaLearningSummary
impl Debug for MetaLearningSummary
Source§impl<'de> Deserialize<'de> for MetaLearningSummary
impl<'de> Deserialize<'de> for MetaLearningSummary
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 MetaLearningSummary
impl RefUnwindSafe for MetaLearningSummary
impl Send for MetaLearningSummary
impl Sync for MetaLearningSummary
impl Unpin for MetaLearningSummary
impl UnwindSafe for MetaLearningSummary
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