pub struct NativePluginFactoryContext<'a> { /* private fields */ }Expand description
Immutable Plan input supplied when a native factory creates one generation.
Implementations§
Source§impl<'a> NativePluginFactoryContext<'a>
impl<'a> NativePluginFactoryContext<'a>
Sourcepub const fn instance_key(self) -> &'a str
pub const fn instance_key(self) -> &'a str
Returns the App-local Plugin 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 Plugin-owned configuration selected before boot.
Trait Implementations§
Source§impl<'a> Clone for NativePluginFactoryContext<'a>
impl<'a> Clone for NativePluginFactoryContext<'a>
Source§fn clone(&self) -> NativePluginFactoryContext<'a>
fn clone(&self) -> NativePluginFactoryContext<'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 NativePluginFactoryContext<'a>
Auto Trait Implementations§
impl<'a> Freeze for NativePluginFactoryContext<'a>
impl<'a> RefUnwindSafe for NativePluginFactoryContext<'a>
impl<'a> Send for NativePluginFactoryContext<'a>
impl<'a> Sync for NativePluginFactoryContext<'a>
impl<'a> Unpin for NativePluginFactoryContext<'a>
impl<'a> UnsafeUnpin for NativePluginFactoryContext<'a>
impl<'a> UnwindSafe for NativePluginFactoryContext<'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