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