pub struct WebRelease {Show 15 fields
pub is_draft: Option<bool>,
pub author: Option<Value>,
pub last_updated_by: Option<Value>,
pub reactions: Option<Vec<Value>>,
pub created_at: Option<String>,
pub title: Option<String>,
pub body: Option<String>,
pub id: Option<String>,
pub is_latest: Option<bool>,
pub published_at: Option<String>,
pub target_commit_hash: Option<String>,
pub is_prerelease: Option<bool>,
pub updated_at: Option<String>,
pub tag_ref: Option<String>,
pub assets: Option<Vec<Value>>,
}
Expand description
WebRelease 模型
Fields§
§is_draft: Option<bool>
§last_updated_by: Option<Value>
§reactions: Option<Vec<Value>>
§created_at: Option<String>
§title: Option<String>
§body: Option<String>
§id: Option<String>
§is_latest: Option<bool>
§published_at: Option<String>
§target_commit_hash: Option<String>
§is_prerelease: Option<bool>
§updated_at: Option<String>
§tag_ref: Option<String>
§assets: Option<Vec<Value>>
Trait Implementations§
Source§impl Clone for WebRelease
impl Clone for WebRelease
Source§fn clone(&self) -> WebRelease
fn clone(&self) -> WebRelease
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 WebRelease
impl Debug for WebRelease
Source§impl<'de> Deserialize<'de> for WebRelease
impl<'de> Deserialize<'de> for WebRelease
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 WebRelease
impl RefUnwindSafe for WebRelease
impl Send for WebRelease
impl Sync for WebRelease
impl Unpin for WebRelease
impl UnwindSafe for WebRelease
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