pub struct CurriculumMetadata {
pub name: String,
pub institution: String,
pub degree_type: String,
pub system_type: String,
pub cip_code: String,
}Expand description
Represents parsed curriculum metadata from CSV header
Fields§
§name: StringCurriculum name
institution: StringInstitution name
degree_type: StringDegree type (BS, BA, etc.)
system_type: StringSystem type (semester, quarter, etc.)
cip_code: StringCIP code for the degree
Trait Implementations§
Source§impl Clone for CurriculumMetadata
impl Clone for CurriculumMetadata
Source§fn clone(&self) -> CurriculumMetadata
fn clone(&self) -> CurriculumMetadata
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 moreAuto Trait Implementations§
impl Freeze for CurriculumMetadata
impl RefUnwindSafe for CurriculumMetadata
impl Send for CurriculumMetadata
impl Sync for CurriculumMetadata
impl Unpin for CurriculumMetadata
impl UnwindSafe for CurriculumMetadata
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