DatabaseWatcher

Struct DatabaseWatcher 

Source
pub struct DatabaseWatcher<'a> { /* private fields */ }
Expand description

Database watcher service that monitors file changes and updates the database.

Implementations§

Source§

impl<'a> DatabaseWatcher<'a>

Source

pub fn new(database: Database<'a>) -> Self

Source

pub fn watch(&mut self, options: WatchOptions) -> Result<(), DatabaseError>

Starts watching for file changes in the configured directories.

§Errors

Returns a DatabaseError if:

  • A glob pattern is invalid
  • The file system watcher cannot be created
  • Directories cannot be watched
Source

pub fn stop(&mut self)

Stops watching if currently active.

Source

pub fn is_watching(&self) -> bool

Checks if the watcher is currently active.

Source

pub fn wait(&mut self) -> Result<Vec<FileId>, DatabaseError>

Waits for file changes and updates the database.

This method blocks until file changes are detected, then updates the database in place and returns the IDs of changed files.

§Errors

Returns a DatabaseError if:

Source

pub fn database(&self) -> &Database<'a>

Returns a reference to the database.

Source

pub fn read_only_database(&self) -> ReadDatabase

Returns a reference to the database.

Source

pub fn database_mut(&mut self) -> &mut Database<'a>

Returns a mutable reference to the database.

Source

pub fn with_database_mut<F, R>(&mut self, f: F) -> R
where F: for<'x> FnOnce(&'x mut Database<'a>) -> R,

Provides temporary mutable access to the database through a closure.

This method helps Rust’s borrow checker understand that the mutable borrow of the database is scoped to just the closure execution, allowing the watcher to be used again after the closure returns.

The closure is bounded with for<’x> to explicitly show that the database reference lifetime is scoped to the closure execution only.

Source

pub fn into_database(self) -> Database<'a>

Consumes the watcher and returns the database.

Trait Implementations§

Source§

impl Drop for DatabaseWatcher<'_>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for DatabaseWatcher<'a>

§

impl<'a> RefUnwindSafe for DatabaseWatcher<'a>

§

impl<'a> Send for DatabaseWatcher<'a>

§

impl<'a> !Sync for DatabaseWatcher<'a>

§

impl<'a> Unpin for DatabaseWatcher<'a>

§

impl<'a> UnwindSafe for DatabaseWatcher<'a>

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more