pub struct PackageSection {
pub path: String,
pub commits: Vec<ConventionalCommit>,
}Expand description
One package’s commits under a release entry. Used for per-package sectioning in monorepos.
Fields§
§path: StringPackage path (matches Config.packages[].path).
commits: Vec<ConventionalCommit>Trait Implementations§
Source§impl Clone for PackageSection
impl Clone for PackageSection
Source§fn clone(&self) -> PackageSection
fn clone(&self) -> PackageSection
Returns a duplicate of the value. Read more
1.0.0 · 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 PackageSection
impl Debug for PackageSection
Auto Trait Implementations§
impl Freeze for PackageSection
impl RefUnwindSafe for PackageSection
impl Send for PackageSection
impl Sync for PackageSection
impl Unpin for PackageSection
impl UnsafeUnpin for PackageSection
impl UnwindSafe for PackageSection
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