Struct libpijul_compat::patch::UnsignedPatch
[−]
[src]
pub struct UnsignedPatch { pub flags: PatchFlags, pub header: PatchHeader, pub dependencies: Vec<Hash>, pub changes: Vec<Change>, }
An patch without its signature suffix.
Fields
flags: PatchFlags
header: PatchHeader
Header part, containing the metadata.
dependencies: Vec<Hash>
The dependencies of this patch.
changes: Vec<Change>
The actual contents of the patch.
Methods
impl UnsignedPatch
[src]
fn empty() -> UnsignedPatch
[src]
fn leave_unsigned(self) -> Patch
[src]
Trait Implementations
impl Debug for UnsignedPatch
[src]
impl Clone for UnsignedPatch
[src]
fn clone(&self) -> UnsignedPatch
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more