pub struct Lesson {
pub id: i32,
pub teacher: LessonClass,
pub subject: LessonClass,
pub class: LessonClass,
}Expand description
A lesson linking a teacher, subject, and class.
Fields§
§id: i32Unique lesson identifier.
teacher: LessonClassReference to the teacher.
subject: LessonClassReference to the subject.
class: LessonClassReference to the class.
Trait 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 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