pub struct ReviewDiffEntry {
pub path: String,
pub kind: ReviewDiffKind,
pub before: Option<String>,
pub after: Option<String>,
}Fields§
§path: String§kind: ReviewDiffKind§before: Option<String>§after: Option<String>Trait Implementations§
Source§impl Clone for ReviewDiffEntry
impl Clone for ReviewDiffEntry
Source§fn clone(&self) -> ReviewDiffEntry
fn clone(&self) -> ReviewDiffEntry
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 ReviewDiffEntry
impl Debug for ReviewDiffEntry
impl Eq for ReviewDiffEntry
Source§impl PartialEq for ReviewDiffEntry
impl PartialEq for ReviewDiffEntry
impl StructuralPartialEq for ReviewDiffEntry
Auto Trait Implementations§
impl Freeze for ReviewDiffEntry
impl RefUnwindSafe for ReviewDiffEntry
impl Send for ReviewDiffEntry
impl Sync for ReviewDiffEntry
impl Unpin for ReviewDiffEntry
impl UnsafeUnpin for ReviewDiffEntry
impl UnwindSafe for ReviewDiffEntry
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