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