pub struct FileView {
pub path: String,
pub status: String,
pub hunks: Vec<HunkView>,
}Expand description
One changed file within a timeline point.
Fields§
§path: String§status: String§hunks: Vec<HunkView>Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileView
impl RefUnwindSafe for FileView
impl Send for FileView
impl Sync for FileView
impl Unpin for FileView
impl UnsafeUnpin for FileView
impl UnwindSafe for FileView
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> 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