pub struct BumpOutcome {
pub commit: String,
pub effective_date: String,
}Expand description
The outcome of an applied bump: the commit the edits landed in (the tag target) and the CHANGELOG effective date (journalled for resume reuse).
Fields§
§commit: StringThe bump commit sha — the commit the release tag points at.
effective_date: StringThe YYYY-MM-DD date the CHANGELOG was finalized under.
Trait Implementations§
Source§impl Clone for BumpOutcome
impl Clone for BumpOutcome
Source§fn clone(&self) -> BumpOutcome
fn clone(&self) -> BumpOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BumpOutcome
impl Debug for BumpOutcome
impl Eq for BumpOutcome
Source§impl PartialEq for BumpOutcome
impl PartialEq for BumpOutcome
impl StructuralPartialEq for BumpOutcome
Auto Trait Implementations§
impl Freeze for BumpOutcome
impl RefUnwindSafe for BumpOutcome
impl Send for BumpOutcome
impl Sync for BumpOutcome
impl Unpin for BumpOutcome
impl UnsafeUnpin for BumpOutcome
impl UnwindSafe for BumpOutcome
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.