pub(crate) struct OwnedRwLockReadGuard<T: 'static> {
    guard: Option<RwLockReadGuard<'static, T>>,
    ownership: Arc<RwLock<T>>,
}

Fields§

§guard: Option<RwLockReadGuard<'static, T>>§ownership: Arc<RwLock<T>>

Implementations§

source§

impl<T> OwnedRwLockReadGuard<T>

source

fn new(lock: &Arc<RwLock<T>>) -> LockResult<Self>

source

pub fn into_inner(self) -> Arc<RwLock<T>>

Converts this guard into an owned reference of the underlying lockable object

Trait Implementations§

source§

impl<T> Debug for OwnedRwLockReadGuard<T>
where T: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Display for OwnedRwLockReadGuard<T>
where T: Display,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Drop for OwnedRwLockReadGuard<T>
where T: Sized,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T> Deref for OwnedRwLockReadGuard<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T> Send for OwnedRwLockReadGuard<T>
where T: Send,

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
§

impl<P> AsEngineRef for P
where P: Deref, <P as Deref>::Target: AsEngineRef,

§

fn as_engine_ref(&self) -> EngineRef<'_>

Returns a EngineRef pointing to the underlying context.
§

fn maybe_as_store(&self) -> Option<StoreRef<'_>>

Returns an optional StoreRef is the passed reference is a Store.
§

impl<P> AsStoreRef for P
where P: Deref, <P as Deref>::Target: AsStoreRef,

§

fn as_store_ref(&self) -> StoreRef<'_>

Returns a StoreRef pointing to the underlying context.
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<D, F> FileSystem for D
where D: Deref<Target = F> + Debug + Send + Sync + 'static, F: FileSystem + ?Sized,

§

fn read_dir(&self, path: &Path) -> Result<ReadDir, FsError>

§

fn create_dir(&self, path: &Path) -> Result<(), FsError>

§

fn remove_dir(&self, path: &Path) -> Result<(), FsError>

§

fn rename<'a>( &'a self, from: &'a Path, to: &'a Path, ) -> Pin<Box<dyn Future<Output = Result<(), FsError>> + Send + 'a>>

§

fn metadata(&self, path: &Path) -> Result<Metadata, FsError>

This method gets metadata without following symlinks in the path. Currently identical to metadata because symlinks aren’t implemented yet.
§

fn remove_file(&self, path: &Path) -> Result<(), FsError>

§

fn new_open_options(&self) -> OpenOptions<'_>

§

fn mount( &self, name: String, path: &Path, fs: Box<dyn FileSystem + Send + Sync>, ) -> Result<(), FsError>

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<D, C> HttpClient for D
where D: Deref<Target = C> + Debug, C: HttpClient + 'static + ?Sized,

source§

fn request( &self, request: HttpRequest, ) -> Pin<Box<dyn Future<Output = Result<HttpResponse, Error>> + Send + '_>>

§

impl<T> Instrument for T

§

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

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

fn in_current_span(self) -> Instrumented<Self>

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

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

source§

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
§

impl<T> LayoutRaw for T

§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Returns the layout of the type.
source§

impl<D, C> ModuleCache for D
where D: Deref<Target = C> + Debug + Send + Sync, C: ModuleCache + Send + Sync + ?Sized,

source§

fn load<'life0, 'life1, 'async_trait>( &'life0 self, key: ModuleHash, engine: &'life1 Engine, ) -> Pin<Box<dyn Future<Output = Result<Module, CacheError>> + Send + 'async_trait>>
where 'life0: 'async_trait, 'life1: 'async_trait, D: 'async_trait,

Load a module based on its hash.
source§

fn save<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, key: ModuleHash, engine: &'life1 Engine, module: &'life2 Module, ) -> Pin<Box<dyn Future<Output = Result<(), CacheError>> + Send + 'async_trait>>
where 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, D: 'async_trait,

Save a module so it can be retrieved with ModuleCache::load() at a later time. Read more
source§

fn with_fallback<C>(self, other: C) -> FallbackCache<Self, C>
where Self: Sized, C: ModuleCache,

Chain a second ModuleCache that will be used as a fallback if lookups on the primary cache fail. Read more
source§

impl<D, P> PackageLoader for D
where D: Deref<Target = P> + Debug + Send + Sync, P: PackageLoader + 'static + ?Sized,

source§

fn load<'life0, 'life1, 'async_trait>( &'life0 self, summary: &'life1 PackageSummary, ) -> Pin<Box<dyn Future<Output = Result<Container, Error>> + Send + 'async_trait>>
where 'life0: 'async_trait, 'life1: 'async_trait, D: 'async_trait,

source§

fn load_package_tree<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, root: &'life1 Container, resolution: &'life2 Resolution, root_is_local_dir: bool, ) -> Pin<Box<dyn Future<Output = Result<BinaryPackage, Error>> + Send + 'async_trait>>
where 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, D: 'async_trait,

Load a resolved package into memory so it can be executed. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

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

impl<T> Pointee for T

§

type Metadata = ()

The metadata type for pointers and references to this type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<D, S> Source for D
where D: Deref<Target = S> + Debug + Send + Sync, S: Source + Send + Sync + 'static + ?Sized,

source§

fn query<'life0, 'life1, 'async_trait>( &'life0 self, package: &'life1 PackageSource, ) -> Pin<Box<dyn Future<Output = Result<Vec<PackageSummary>, QueryError>> + Send + 'async_trait>>
where 'life0: 'async_trait, 'life1: 'async_trait, D: 'async_trait,

Ask this source which packages would satisfy a particular Dependency constraint. Read more
source§

fn latest<'life0, 'life1, 'async_trait>( &'life0 self, pkg: &'life1 PackageSource, ) -> Pin<Box<dyn Future<Output = Result<PackageSummary, QueryError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Run Source::query() and get the PackageSummary for the latest version.
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

type Error = Infallible

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

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

Performs the conversion.
source§

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.
source§

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

Performs the conversion.
§

impl<T> Upcastable for T
where T: Any + Debug + 'static,

§

fn upcast_any_ref(&self) -> &(dyn Any + 'static)

§

fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)

§

fn upcast_any_box(self: Box<T>) -> Box<dyn Any>

§

impl<T> Upcastable for T
where T: Any + Send + Sync + 'static,

§

fn upcast_any_ref(&self) -> &(dyn Any + 'static)

upcast ref
§

fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)

upcast mut ref
§

fn upcast_any_box(self: Box<T>) -> Box<dyn Any>

upcast boxed dyn
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<D, T> VirtualTaskManager for D
where D: Deref<Target = T> + Debug + Send + Sync + 'static, T: VirtualTaskManager + ?Sized,

source§

fn build_memory( &self, store: &mut StoreMut<'_>, spawn_type: SpawnMemoryType<'_>, ) -> Result<Option<Memory>, WasiThreadError>

Build a new Webassembly memory. Read more
source§

fn sleep_now( &self, time: Duration, ) -> Pin<Box<dyn Future<Output = ()> + Send + Sync>>

Pause the current thread of execution. Read more
source§

fn task_shared( &self, task: Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>, ) -> Result<(), WasiThreadError>

Run an asynchronous operation on the thread pool. Read more
source§

fn task_wasm(&self, task: TaskWasm<'_, '_>) -> Result<(), WasiThreadError>

Run a blocking WebAssembly operation on the thread pool. Read more
source§

fn task_dedicated( &self, task: Box<dyn FnOnce() + Send>, ) -> Result<(), WasiThreadError>

Run a blocking operation on the thread pool. Read more
source§

fn thread_parallelism(&self) -> Result<usize, WasiThreadError>

Returns the amount of parallelism that is possible on this platform.
source§

fn spawn_with_module( &self, module: Module, task: Box<dyn FnOnce(Module) + Send>, ) -> Result<(), WasiThreadError>

Schedule a blocking task to run on the threadpool, explicitly transferring a Module to the task. Read more
source§

impl<D, T> VirtualTaskManagerExt for D
where D: Deref<Target = T>, T: VirtualTaskManager + ?Sized,

source§

fn spawn_and_block_on<A>( &self, task: impl Future<Output = A> + Send + 'static, ) -> Result<A, Error>
where A: Send + 'static,

Runs the work in the background via the task managers shared background threads while blocking the current execution until it finishs

source§

fn spawn_await<O, F>( &self, f: F, ) -> Box<dyn Future<Output = Result<O, Box<dyn Error>>> + Unpin + Send>
where O: Send + 'static, F: FnOnce() -> O + Send + 'static,

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,