pub struct TagInfo {
pub name: String,
pub commit_hash: String,
pub semver_info: Option<SemverInfo>,
pub created_at: DateTime<Utc>,
pub is_release: bool,
pub release_name: Option<String>,
pub release_url: Option<String>,
pub published_at: Option<DateTime<Utc>>,
pub tag_url: Option<String>,
}Fields§
§name: String§commit_hash: String§semver_info: Option<SemverInfo>§created_at: DateTime<Utc>§is_release: bool§release_name: Option<String>§release_url: Option<String>§published_at: Option<DateTime<Utc>>§tag_url: Option<String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TagInfo
impl RefUnwindSafe for TagInfo
impl Send for TagInfo
impl Sync for TagInfo
impl Unpin for TagInfo
impl UnsafeUnpin for TagInfo
impl UnwindSafe for TagInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more