pub struct PackageChange {
pub unique_id: Arc<UniqueId>,
pub change_type: ChangeType,
pub summary: Arc<str>,
}
Fields§
§unique_id: Arc<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: Arc<str>
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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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
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