pub struct ChangedFile {
pub file_id: FileId,
pub change: Change,
}
Expand description
Changed file in the Vfs
.
Fields§
§file_id: FileId
Id of the changed file
change: Change
Kind of change
Implementations§
Source§impl ChangedFile
impl ChangedFile
Sourcepub fn is_created_or_deleted(&self) -> bool
pub fn is_created_or_deleted(&self) -> bool
Sourcepub fn is_created(&self) -> bool
pub fn is_created(&self) -> bool
Returns true
if the change is Create
.
Sourcepub fn is_modified(&self) -> bool
pub fn is_modified(&self) -> bool
Returns true
if the change is Modify
.
pub fn kind(&self) -> ChangeKind
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChangedFile
impl RefUnwindSafe for ChangedFile
impl Send for ChangedFile
impl Sync for ChangedFile
impl Unpin for ChangedFile
impl UnwindSafe for ChangedFile
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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