pub struct ReviewUnitPaths {
pub module_dir: String,
pub files: Vec<String>,
}Expand description
Engine-owned changed-file review unit.
Fields§
§module_dir: StringDirectory the unit’s files share.
files: Vec<String>Changed files grouped into this unit.
Trait Implementations§
Source§impl Clone for ReviewUnitPaths
impl Clone for ReviewUnitPaths
Source§impl Debug for ReviewUnitPaths
impl Debug for ReviewUnitPaths
impl Eq for ReviewUnitPaths
Source§impl From<ReviewUnitPaths> for ReviewUnitPaths
impl From<ReviewUnitPaths> for ReviewUnitPaths
Source§fn from(paths: GraphReviewUnitPaths) -> Self
fn from(paths: GraphReviewUnitPaths) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReviewUnitPaths
impl PartialEq for ReviewUnitPaths
impl StructuralPartialEq for ReviewUnitPaths
Auto Trait Implementations§
impl Freeze for ReviewUnitPaths
impl RefUnwindSafe for ReviewUnitPaths
impl Send for ReviewUnitPaths
impl Sync for ReviewUnitPaths
impl Unpin for ReviewUnitPaths
impl UnsafeUnpin for ReviewUnitPaths
impl UnwindSafe for ReviewUnitPaths
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more