pub struct WebReleaseList {
pub releases: Option<Vec<Value>>,
pub tag_count: Option<i64>,
pub release_count: Option<i64>,
}
Expand description
WebReleaseList 模型
Fields§
§releases: Option<Vec<Value>>
§tag_count: Option<i64>
§release_count: Option<i64>
Trait Implementations§
Source§impl Clone for WebReleaseList
impl Clone for WebReleaseList
Source§fn clone(&self) -> WebReleaseList
fn clone(&self) -> WebReleaseList
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 WebReleaseList
impl Debug for WebReleaseList
Source§impl<'de> Deserialize<'de> for WebReleaseList
impl<'de> Deserialize<'de> for WebReleaseList
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 WebReleaseList
impl RefUnwindSafe for WebReleaseList
impl Send for WebReleaseList
impl Sync for WebReleaseList
impl Unpin for WebReleaseList
impl UnwindSafe for WebReleaseList
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