pub struct WebReleaseNotes {
pub is_semver_tag: Option<bool>,
pub compare_head_tag: Option<String>,
pub commit_notes: Option<Vec<Value>>,
pub compare_base_tag: Option<String>,
}
Expand description
WebReleaseNotes 模型
Fields§
§is_semver_tag: Option<bool>
§compare_head_tag: Option<String>
§commit_notes: Option<Vec<Value>>
§compare_base_tag: Option<String>
Trait Implementations§
Source§impl Clone for WebReleaseNotes
impl Clone for WebReleaseNotes
Source§fn clone(&self) -> WebReleaseNotes
fn clone(&self) -> WebReleaseNotes
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 WebReleaseNotes
impl Debug for WebReleaseNotes
Source§impl<'de> Deserialize<'de> for WebReleaseNotes
impl<'de> Deserialize<'de> for WebReleaseNotes
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 WebReleaseNotes
impl RefUnwindSafe for WebReleaseNotes
impl Send for WebReleaseNotes
impl Sync for WebReleaseNotes
impl Unpin for WebReleaseNotes
impl UnwindSafe for WebReleaseNotes
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