Struct changesets::PackageChange
source · pub struct PackageChange {
pub unique_id: UniqueId,
pub change_type: ChangeType,
pub summary: String,
}
Fields§
§unique_id: UniqueId
The ID of the originating Change
.
change_type: ChangeType
The type of change, which determines how the version will be bumped (if at all).
summary: String
The details of the change, as a markdown-formatted string.
Trait Implementations§
source§impl Clone for PackageChange
impl Clone for PackageChange
source§fn clone(&self) -> PackageChange
fn clone(&self) -> PackageChange
Returns a copy 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 PackageChange
impl Debug for PackageChange
source§impl PartialEq for PackageChange
impl PartialEq for PackageChange
source§fn eq(&self, other: &PackageChange) -> bool
fn eq(&self, other: &PackageChange) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for PackageChange
impl StructuralPartialEq for PackageChange
Auto Trait Implementations§
impl Freeze for PackageChange
impl RefUnwindSafe for PackageChange
impl Send for PackageChange
impl Sync for PackageChange
impl Unpin for PackageChange
impl UnwindSafe for PackageChange
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