Struct forgejo_api::structs::AnnotatedTag
source · pub struct AnnotatedTag {
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§
§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 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<'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§fn eq(&self, other: &AnnotatedTag) -> bool
fn eq(&self, other: &AnnotatedTag) -> bool
This method tests for
self and other values to be equal, and is used
by ==.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