pub struct ReleaseReport {Show 15 fields
pub outcome: ReleaseOutcome,
pub current_version: String,
pub next_version: Option<String>,
pub bump: Option<BumpLevel>,
pub tag: Option<String>,
pub major_alias: Option<String>,
pub commit_sha: Option<String>,
pub release_url: Option<String>,
pub pull_request_number: Option<u64>,
pub pull_request_url: Option<String>,
pub release_branch: Option<String>,
pub notes: Option<String>,
pub commits_analyzed: usize,
pub commit_range_truncated: bool,
pub files_updated: Vec<PathBuf>,
}Fields§
§outcome: ReleaseOutcome§current_version: String§next_version: Option<String>§bump: Option<BumpLevel>§tag: Option<String>§major_alias: Option<String>§commit_sha: Option<String>§release_url: Option<String>§pull_request_number: Option<u64>§pull_request_url: Option<String>§release_branch: Option<String>§notes: Option<String>§commits_analyzed: usize§commit_range_truncated: bool§files_updated: Vec<PathBuf>Implementations§
Source§impl ReleaseReport
impl ReleaseReport
Sourcepub fn github_outputs(&self, notes_file: &Path) -> String
pub fn github_outputs(&self, notes_file: &Path) -> String
Render $GITHUB_OUTPUT lines. Keys are always present; values are
empty when the outcome did not produce them.
Trait Implementations§
Source§impl Clone for ReleaseReport
impl Clone for ReleaseReport
Source§fn clone(&self) -> ReleaseReport
fn clone(&self) -> ReleaseReport
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 ReleaseReport
impl Debug for ReleaseReport
impl Eq for ReleaseReport
Source§impl PartialEq for ReleaseReport
impl PartialEq for ReleaseReport
impl StructuralPartialEq for ReleaseReport
Auto Trait Implementations§
impl Freeze for ReleaseReport
impl RefUnwindSafe for ReleaseReport
impl Send for ReleaseReport
impl Sync for ReleaseReport
impl Unpin for ReleaseReport
impl UnsafeUnpin for ReleaseReport
impl UnwindSafe for ReleaseReport
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.