pub struct NativeModuleFactoryContext<'a> { /* private fields */ }Expand description
Immutable Plan input supplied when a native factory creates one generation.
Implementations§
Source§impl<'a> NativeModuleFactoryContext<'a>
impl<'a> NativeModuleFactoryContext<'a>
Sourcepub const fn instance_key(self) -> &'a str
pub const fn instance_key(self) -> &'a str
Returns the App-local Module Instance key.
Sourcepub const fn entrypoint(self) -> &'a str
pub const fn entrypoint(self) -> &'a str
Returns the exact package entrypoint selected before boot.
Sourcepub const fn configuration(self) -> &'a str
pub const fn configuration(self) -> &'a str
Returns opaque Module-owned configuration selected before boot.
Trait Implementations§
Source§impl<'a> Clone for NativeModuleFactoryContext<'a>
impl<'a> Clone for NativeModuleFactoryContext<'a>
Source§fn clone(&self) -> NativeModuleFactoryContext<'a>
fn clone(&self) -> NativeModuleFactoryContext<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for NativeModuleFactoryContext<'a>
Auto Trait Implementations§
impl<'a> Freeze for NativeModuleFactoryContext<'a>
impl<'a> RefUnwindSafe for NativeModuleFactoryContext<'a>
impl<'a> Send for NativeModuleFactoryContext<'a>
impl<'a> Sync for NativeModuleFactoryContext<'a>
impl<'a> Unpin for NativeModuleFactoryContext<'a>
impl<'a> UnsafeUnpin for NativeModuleFactoryContext<'a>
impl<'a> UnwindSafe for NativeModuleFactoryContext<'a>
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