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