pub struct CommendationInfo {
pub category: Option<String>,
pub date_of_commendation: Option<String>,
pub government_departments: Option<String>,
pub target: Option<String>,
pub title: Option<String>,
}
Expand description
表彰情報
Fields§
§category: Option<String>
部門
date_of_commendation: Option<String>
年月日
government_departments: Option<String>
府省
target: Option<String>
受賞対象
title: Option<String>
表彰名
Trait Implementations§
Source§impl Clone for CommendationInfo
impl Clone for CommendationInfo
Source§fn clone(&self) -> CommendationInfo
fn clone(&self) -> CommendationInfo
Returns a copy 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 CommendationInfo
impl Debug for CommendationInfo
Source§impl Default for CommendationInfo
impl Default for CommendationInfo
Source§fn default() -> CommendationInfo
fn default() -> CommendationInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommendationInfo
impl<'de> Deserialize<'de> for CommendationInfo
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 CommendationInfo
impl RefUnwindSafe for CommendationInfo
impl Send for CommendationInfo
impl Sync for CommendationInfo
impl Unpin for CommendationInfo
impl UnwindSafe for CommendationInfo
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