pub struct Category {
pub title: String,
pub changes: Vec<String>,
}
Expand description
Changes grouped by categories (e.g. “Fixes”, “Breaking Changes”, etc.).
Fields§
§title: String
The title of the category, as defined in Conventions
.
changes: Vec<String>
A list of changes in this category groups across all commits in range.
Trait Implementations§
impl Eq for Category
impl StructuralPartialEq for Category
Auto Trait Implementations§
impl Freeze for Category
impl RefUnwindSafe for Category
impl Send for Category
impl Sync for Category
impl Unpin for Category
impl UnwindSafe for Category
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