pub struct PackageCommit {
pub id: Oid,
pub short_id: String,
pub summary: String,
pub message: String,
pub paths: BTreeSet<PathBuf>,
}Fields§
§id: Oid§short_id: String§summary: String§message: String§paths: BTreeSet<PathBuf>Implementations§
Source§impl PackageCommit
impl PackageCommit
pub fn status(&self) -> Option<CommitStatus>
Trait Implementations§
Source§impl Clone for PackageCommit
impl Clone for PackageCommit
Source§fn clone(&self) -> PackageCommit
fn clone(&self) -> PackageCommit
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 moreAuto Trait Implementations§
impl Freeze for PackageCommit
impl RefUnwindSafe for PackageCommit
impl Send for PackageCommit
impl Sync for PackageCommit
impl Unpin for PackageCommit
impl UnwindSafe for PackageCommit
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