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