pub struct DtoMetaData {
pub home_page: Option<String>,
pub minimum_stability: Option<String>,
pub package_tag: Option<String>,
pub package_name: Option<String>,
pub package_type: Option<String>,
pub readme: Option<String>,
pub license_url: Option<String>,
pub author: Option<String>,
pub repository_url: Option<String>,
}
Expand description
DtoMetaData 模型
Fields§
§home_page: Option<String>
§minimum_stability: Option<String>
§package_tag: Option<String>
§package_name: Option<String>
§package_type: Option<String>
§readme: Option<String>
§license_url: Option<String>
§repository_url: Option<String>
Trait Implementations§
Source§impl Clone for DtoMetaData
impl Clone for DtoMetaData
Source§fn clone(&self) -> DtoMetaData
fn clone(&self) -> DtoMetaData
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 DtoMetaData
impl Debug for DtoMetaData
Source§impl<'de> Deserialize<'de> for DtoMetaData
impl<'de> Deserialize<'de> for DtoMetaData
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 DtoMetaData
impl RefUnwindSafe for DtoMetaData
impl Send for DtoMetaData
impl Sync for DtoMetaData
impl Unpin for DtoMetaData
impl UnwindSafe for DtoMetaData
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