pub struct Tag {
pub commit: Option<Box<CommitMeta>>,
pub id: Option<String>,
pub message: Option<String>,
pub name: Option<String>,
pub tarball_url: Option<String>,
pub zipball_url: Option<String>,
}
Expand description
Tag : Tag represents a repository tag
Fields§
§commit: Option<Box<CommitMeta>>
§id: Option<String>
§message: Option<String>
§name: Option<String>
§tarball_url: Option<String>
§zipball_url: Option<String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Tag
impl<'de> Deserialize<'de> for Tag
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
impl StructuralPartialEq for Tag
Auto Trait Implementations§
impl Freeze for Tag
impl RefUnwindSafe for Tag
impl Send for Tag
impl Sync for Tag
impl Unpin for Tag
impl UnwindSafe for Tag
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