pub struct LearningList {
pub active: i32,
pub learnings: Vec<Learning>,
}Expand description
Matching learnings.
Fields§
§active: i32How many of them are currently given to runs.
learnings: Vec<Learning>The learnings.
Trait Implementations§
Source§impl Clone for LearningList
impl Clone for LearningList
Source§impl Debug for LearningList
impl Debug for LearningList
Source§impl<'de> Deserialize<'de> for LearningList
impl<'de> Deserialize<'de> for LearningList
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 LearningList
impl PartialEq for LearningList
Source§impl Serialize for LearningList
impl Serialize for LearningList
impl StructuralPartialEq for LearningList
Auto Trait Implementations§
impl Freeze for LearningList
impl RefUnwindSafe for LearningList
impl Send for LearningList
impl Sync for LearningList
impl Unpin for LearningList
impl UnsafeUnpin for LearningList
impl UnwindSafe for LearningList
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