pub struct PatentInfo {
pub application_date: Option<String>,
pub application_number: Option<String>,
pub classifications: Option<Vec<HashMap<String, String>>>,
pub patent_type: Option<String>,
pub title: Option<String>,
}
Expand description
特許情報
Fields§
§application_date: Option<String>
出願年月日
application_number: Option<String>
出願番号
classifications: Option<Vec<HashMap<String, String>>>
分類 (Array[HashMap«string,string»], optional)
patent_type: Option<String>
特許/意匠/商標
title: Option<String>
発明の名称(等)/意匠に係る物品/表示用商標
Trait Implementations§
Source§impl Clone for PatentInfo
impl Clone for PatentInfo
Source§fn clone(&self) -> PatentInfo
fn clone(&self) -> PatentInfo
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 PatentInfo
impl Debug for PatentInfo
Source§impl Default for PatentInfo
impl Default for PatentInfo
Source§fn default() -> PatentInfo
fn default() -> PatentInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatentInfo
impl<'de> Deserialize<'de> for PatentInfo
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 PatentInfo
impl RefUnwindSafe for PatentInfo
impl Send for PatentInfo
impl Sync for PatentInfo
impl Unpin for PatentInfo
impl UnwindSafe for PatentInfo
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