pub struct Lecture {
pub lecture_room: String,
pub period: Period,
pub number_pair: u8,
pub lecture_type: String,
pub teachers: Vec<Teacher>,
pub groups: Vec<Group>,
pub subject: Subject,
}Expand description
Massive Lacture struct.
Fields§
§lecture_room: String§period: Period§number_pair: u8§lecture_type: String§teachers: Vec<Teacher>§groups: Vec<Group>§subject: SubjectTrait Implementations§
Auto Trait Implementations§
impl Freeze for Lecture
impl RefUnwindSafe for Lecture
impl Send for Lecture
impl Sync for Lecture
impl Unpin for Lecture
impl UnwindSafe for Lecture
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