pub struct DtoCommonRegistryPackageDetail {
pub recent_pull_count: Option<i64>,
pub tag_total: Option<i64>,
pub slug: Option<String>,
pub address: Option<String>,
pub desc: Option<String>,
pub pull_count: Option<i64>,
pub package: Option<String>,
pub last_pusher: Option<Value>,
pub tags: Option<Vec<Value>>,
}
Expand description
DtoCommonRegistryPackageDetail 模型
Fields§
§recent_pull_count: Option<i64>
§tag_total: Option<i64>
§slug: Option<String>
§address: Option<String>
§desc: Option<String>
§pull_count: Option<i64>
§package: Option<String>
§last_pusher: Option<Value>
Trait Implementations§
Source§impl Clone for DtoCommonRegistryPackageDetail
impl Clone for DtoCommonRegistryPackageDetail
Source§fn clone(&self) -> DtoCommonRegistryPackageDetail
fn clone(&self) -> DtoCommonRegistryPackageDetail
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<'de> Deserialize<'de> for DtoCommonRegistryPackageDetail
impl<'de> Deserialize<'de> for DtoCommonRegistryPackageDetail
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 DtoCommonRegistryPackageDetail
impl RefUnwindSafe for DtoCommonRegistryPackageDetail
impl Send for DtoCommonRegistryPackageDetail
impl Sync for DtoCommonRegistryPackageDetail
impl Unpin for DtoCommonRegistryPackageDetail
impl UnwindSafe for DtoCommonRegistryPackageDetail
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