pub struct AnnotatedTag {
pub message: Option<String>,
pub object: Option<Box<AnnotatedTagObject>>,
pub sha: Option<String>,
pub tag: Option<String>,
pub tagger: Option<Box<CommitUser>>,
pub url: Option<String>,
pub verification: Option<Box<PayloadCommitVerification>>,
}
Expand description
AnnotatedTag : AnnotatedTag represents an annotated tag
Fields§
§message: Option<String>
§object: Option<Box<AnnotatedTagObject>>
§sha: Option<String>
§tag: Option<String>
§tagger: Option<Box<CommitUser>>
§url: Option<String>
§verification: Option<Box<PayloadCommitVerification>>
Implementations§
Source§impl AnnotatedTag
impl AnnotatedTag
Sourcepub fn new() -> AnnotatedTag
pub fn new() -> AnnotatedTag
AnnotatedTag represents an annotated tag
Trait Implementations§
Source§impl Clone for AnnotatedTag
impl Clone for AnnotatedTag
Source§fn clone(&self) -> AnnotatedTag
fn clone(&self) -> AnnotatedTag
Returns a copy 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 Default for AnnotatedTag
impl Default for AnnotatedTag
Source§fn default() -> AnnotatedTag
fn default() -> AnnotatedTag
Returns the “default value” for a type. Read more
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 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