pub struct AsyncIndexedSourceView<'map, 'engine, S: AsyncIndexedStore> { /* private fields */ }Expand description
Async read view over the current canonical source tree.
Implementations§
Source§impl<S> AsyncIndexedSourceView<'_, '_, S>where
S: AsyncIndexedStore + Clone,
<S as AsyncStore>::Error: Send + Sync,
<S as AsyncManifestStore>::Error: Send + Sync,
impl<S> AsyncIndexedSourceView<'_, '_, S>where
S: AsyncIndexedStore + Clone,
<S as AsyncStore>::Error: Send + Sync,
<S as AsyncManifestStore>::Error: Send + Sync,
Auto Trait Implementations§
impl<'map, 'engine, S> !RefUnwindSafe for AsyncIndexedSourceView<'map, 'engine, S>
impl<'map, 'engine, S> !UnwindSafe for AsyncIndexedSourceView<'map, 'engine, S>
impl<'map, 'engine, S> Freeze for AsyncIndexedSourceView<'map, 'engine, S>where
&'map AsyncIndexedMap<'engine, S>: Freeze,
impl<'map, 'engine, S> Send for AsyncIndexedSourceView<'map, 'engine, S>where
&'map AsyncIndexedMap<'engine, S>: Send,
impl<'map, 'engine, S> Sync for AsyncIndexedSourceView<'map, 'engine, S>where
&'map AsyncIndexedMap<'engine, S>: Sync,
impl<'map, 'engine, S> Unpin for AsyncIndexedSourceView<'map, 'engine, S>where
&'map AsyncIndexedMap<'engine, S>: Unpin,
impl<'map, 'engine, S> UnsafeUnpin for AsyncIndexedSourceView<'map, 'engine, S>where
&'map AsyncIndexedMap<'engine, S>: UnsafeUnpin,
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