pub struct RenderedGroup {
pub name: String,
pub commits: Vec<ConventionalCommit>,
}Expand description
A rendered group of commits for template context.
Fields§
§name: String§commits: Vec<ConventionalCommit>Trait Implementations§
Source§impl Clone for RenderedGroup
impl Clone for RenderedGroup
Source§fn clone(&self) -> RenderedGroup
fn clone(&self) -> RenderedGroup
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 RenderedGroup
impl Debug for RenderedGroup
Auto Trait Implementations§
impl Freeze for RenderedGroup
impl RefUnwindSafe for RenderedGroup
impl Send for RenderedGroup
impl Sync for RenderedGroup
impl Unpin for RenderedGroup
impl UnsafeUnpin for RenderedGroup
impl UnwindSafe for RenderedGroup
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