pub struct Release {
pub name: String,
pub ts: i64,
}Expand description
A tagged release: a git tag name and the unix timestamp of the tag (the tag date for annotated tags, the commit date for lightweight tags). Used to draw release markers on the timeline for single-repository runs.
Fields§
§name: String§ts: i64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Release
impl RefUnwindSafe for Release
impl Send for Release
impl Sync for Release
impl Unpin for Release
impl UnsafeUnpin for Release
impl UnwindSafe for Release
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