pub struct Flycheck { /* private fields */ }Expand description
Per-document flycheck state: save generations and the last published findings (already converted to diagnostics against the checked text).
Implementations§
Source§impl Flycheck
impl Flycheck
pub fn new(runner: Box<dyn FlycheckRunner>) -> Self
Sourcepub fn begin_save(&self, uri: &Url) -> u64
pub fn begin_save(&self, uri: &Url) -> u64
A save happened: invalidate any in-flight run and return the new generation this one must still hold when it finishes.
pub fn is_current(&self, uri: &Url, generation: u64) -> bool
pub fn forget(&self, uri: &Url)
Sourcepub fn diagnostics_for(&self, uri: &Url) -> Vec<Diagnostic>
pub fn diagnostics_for(&self, uri: &Url) -> Vec<Diagnostic>
The last completed run’s diagnostics, for merging into any publish.
Auto Trait Implementations§
impl Freeze for Flycheck
impl !RefUnwindSafe for Flycheck
impl Send for Flycheck
impl Sync for Flycheck
impl Unpin for Flycheck
impl UnsafeUnpin for Flycheck
impl !UnwindSafe for Flycheck
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.