pub struct MeteBaseEvent {
pub time_modifier: Option<String>,
pub sentence: Option<MeteSentence>,
pub locals: Vec<MeteLocalEvent>,
pub coordinate: Option<MeteCoordinatePart>,
pub location: Option<String>,
pub events: Vec<MeteEvent>,
pub remark: Option<String>,
}Fields§
§time_modifier: Option<String>変化を表す時要素
変化を表す時間表現を示す
sentence: Option<MeteSentence>文章形式の表現
事象の内容を文章形式で示す
locals: Vec<MeteLocalEvent>地域
領域の一部の区域の内容を示す
coordinate: Option<MeteCoordinatePart>領域の存在域
location: Option<String>領域の存在域
events: Vec<MeteEvent>事象名
事象を示す
remark: Option<String>注意事項・付加事項
Trait Implementations§
Source§impl Clone for MeteBaseEvent
impl Clone for MeteBaseEvent
Source§fn clone(&self) -> MeteBaseEvent
fn clone(&self) -> MeteBaseEvent
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 MeteBaseEvent
impl Debug for MeteBaseEvent
Source§impl<'de> Deserialize<'de> for MeteBaseEvent
impl<'de> Deserialize<'de> for MeteBaseEvent
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 MeteBaseEvent
impl RefUnwindSafe for MeteBaseEvent
impl Send for MeteBaseEvent
impl Sync for MeteBaseEvent
impl Unpin for MeteBaseEvent
impl UnsafeUnpin for MeteBaseEvent
impl UnwindSafe for MeteBaseEvent
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