pub struct AsyncChangedJsonFile<R>where
R: DeserializeOwned,{ /* private fields */ }Available on crate feature
asynchronous only.Expand description
Async variant of ChangedJsonFile.
Implementations§
Source§impl<R> AsyncChangedJsonFile<R>where
R: DeserializeOwned + PartialEq,
impl<R> AsyncChangedJsonFile<R>where
R: DeserializeOwned + PartialEq,
pub fn new<P: AsRef<Path>>( path: P, unblocker: impl Into<Arc<dyn Unblocker>>, ) -> Result<AsyncChangedJsonFile<R>, LogFSError>
Auto Trait Implementations§
impl<R> Freeze for AsyncChangedJsonFile<R>
impl<R> RefUnwindSafe for AsyncChangedJsonFile<R>where
R: RefUnwindSafe,
impl<R> Send for AsyncChangedJsonFile<R>where
R: Send,
impl<R> Sync for AsyncChangedJsonFile<R>where
R: Sync,
impl<R> Unpin for AsyncChangedJsonFile<R>where
R: Unpin,
impl<R> UnsafeUnpin for AsyncChangedJsonFile<R>
impl<R> UnwindSafe for AsyncChangedJsonFile<R>where
R: UnwindSafe,
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