pub struct Lesson {
pub id: String,
pub text: String,
pub severity: LessonSeverity,
pub tags: Vec<String>,
pub source_trigger: String,
}Expand description
A lesson extracted from post-mortem analysis (descriptive, not prescriptive).
Fields§
§id: String§text: String§severity: LessonSeverity§source_trigger: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Lesson
impl<'de> Deserialize<'de> for Lesson
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 Lesson
impl RefUnwindSafe for Lesson
impl Send for Lesson
impl Sync for Lesson
impl Unpin for Lesson
impl UnsafeUnpin for Lesson
impl UnwindSafe for Lesson
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