pub struct ElsTimetableItem {
pub ATPT_OFCDC_SC_CODE: String,
pub ATPT_OFCDC_SC_NM: String,
pub SD_SCHUL_CODE: String,
pub SCHUL_NM: String,
pub AY: i32,
pub SEM: u8,
pub ALL_TI_YMD: String,
pub GRADE: u8,
pub CLASS_NM: Option<String>,
pub PERIO: u8,
pub ITRT_CNTNT: Option<String>,
pub LOAD_DTM: String,
}Fields§
§ATPT_OFCDC_SC_CODE: String시도교육청코드 B10 | C10 | D10 | E10 | F10 | G10 | H10 | I10 | J10 | K10 | M10 | N10 | P10 | Q10 | R10 | S10 | T10 | V10
ATPT_OFCDC_SC_NM: String시도교육청명 Example: 서울특별시교육청
SD_SCHUL_CODE: String행정표준코드 Example: 7130126
SCHUL_NM: String학교명 Example: 서울문현초등학교
AY: i32학년도 Example: 2023
SEM: u8학기 Example: 2
ALL_TI_YMD: String시간표일자 Example: 20230828
GRADE: u8학년 Example: 6
CLASS_NM: Option<String>학급명 Example: 1
PERIO: u8교시 Example: 5
ITRT_CNTNT: Option<String>수업내용 Example: 과학
LOAD_DTM: String수정일자 Example: 20230903
Trait Implementations§
Source§impl Clone for ElsTimetableItem
impl Clone for ElsTimetableItem
Source§fn clone(&self) -> ElsTimetableItem
fn clone(&self) -> ElsTimetableItem
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 moreSource§impl Debug for ElsTimetableItem
impl Debug for ElsTimetableItem
Source§impl<'de> Deserialize<'de> for ElsTimetableItem
impl<'de> Deserialize<'de> for ElsTimetableItem
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 ElsTimetableItem
impl RefUnwindSafe for ElsTimetableItem
impl Send for ElsTimetableItem
impl Sync for ElsTimetableItem
impl Unpin for ElsTimetableItem
impl UnwindSafe for ElsTimetableItem
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