pub struct ProcurementInfo {
pub amount: Option<usize>,
pub date_of_order: Option<String>,
pub government_departments: Option<String>,
pub joint_signatures: Option<Vec<String>>,
pub title: Option<String>,
}
Expand description
調達情報
Fields§
§amount: Option<usize>
金額
date_of_order: Option<String>
受注日
government_departments: Option<String>
府省
joint_signatures: Option<Vec<String>>
連名
title: Option<String>
事業名
Trait Implementations§
Source§impl Clone for ProcurementInfo
impl Clone for ProcurementInfo
Source§fn clone(&self) -> ProcurementInfo
fn clone(&self) -> ProcurementInfo
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 ProcurementInfo
impl Debug for ProcurementInfo
Source§impl Default for ProcurementInfo
impl Default for ProcurementInfo
Source§fn default() -> ProcurementInfo
fn default() -> ProcurementInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcurementInfo
impl<'de> Deserialize<'de> for ProcurementInfo
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 ProcurementInfo
impl RefUnwindSafe for ProcurementInfo
impl Send for ProcurementInfo
impl Sync for ProcurementInfo
impl Unpin for ProcurementInfo
impl UnwindSafe for ProcurementInfo
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