pub struct AnnotatedTag {
pub archive_download_count: Option<TagArchiveDownloadCount>,
pub message: Option<String>,
pub object: Option<AnnotatedTagObject>,
pub sha: Option<String>,
pub tag: Option<String>,
pub tagger: Option<CommitUser>,
pub url: Option<Url>,
pub verification: Option<PayloadCommitVerification>,
}Expand description
AnnotatedTag represents an annotated tag
Fields§
§archive_download_count: Option<TagArchiveDownloadCount>§message: Option<String>§object: Option<AnnotatedTagObject>§sha: Option<String>§tag: Option<String>§tagger: Option<CommitUser>§url: Option<Url>§verification: Option<PayloadCommitVerification>Trait Implementations§
Source§impl Clone for AnnotatedTag
impl Clone for AnnotatedTag
Source§fn clone(&self) -> AnnotatedTag
fn clone(&self) -> AnnotatedTag
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 AnnotatedTag
impl Debug for AnnotatedTag
Source§impl<'de> Deserialize<'de> for AnnotatedTag
impl<'de> Deserialize<'de> for AnnotatedTag
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
Source§impl FromResponse for AnnotatedTag
impl FromResponse for AnnotatedTag
fn from_response( response: ApiResponse, has_body: bool, ) -> Result<Self, StructureError>
Source§impl PartialEq for AnnotatedTag
impl PartialEq for AnnotatedTag
Source§impl Serialize for AnnotatedTag
impl Serialize for AnnotatedTag
impl StructuralPartialEq for AnnotatedTag
Auto Trait Implementations§
impl Freeze for AnnotatedTag
impl RefUnwindSafe for AnnotatedTag
impl Send for AnnotatedTag
impl Sync for AnnotatedTag
impl Unpin for AnnotatedTag
impl UnwindSafe for AnnotatedTag
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