pub struct CapsulePatch {
pub repo: String,
pub path: String,
pub summary: String,
}Expand description
One patch summarized for review.
Fields§
§repo: StringRepository containing the patch.
path: StringPath changed by the patch.
summary: StringReview summary.
Implementations§
Trait Implementations§
Source§impl Clone for CapsulePatch
impl Clone for CapsulePatch
Source§fn clone(&self) -> CapsulePatch
fn clone(&self) -> CapsulePatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CapsulePatch
impl Debug for CapsulePatch
impl Eq for CapsulePatch
Source§impl PartialEq for CapsulePatch
impl PartialEq for CapsulePatch
Source§fn eq(&self, other: &CapsulePatch) -> bool
fn eq(&self, other: &CapsulePatch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CapsulePatch
Auto Trait Implementations§
impl Freeze for CapsulePatch
impl RefUnwindSafe for CapsulePatch
impl Send for CapsulePatch
impl Sync for CapsulePatch
impl Unpin for CapsulePatch
impl UnsafeUnpin for CapsulePatch
impl UnwindSafe for CapsulePatch
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