pub struct ResolvedLoadable {
pub title: String,
pub recipes: Option<EmbeddedDir>,
pub factory: LibFactory,
}Expand description
Host-resolved loadable-lib material.
Fields§
§title: StringHuman title used for this library’s cookbook book.
recipes: Option<EmbeddedDir>Embedded recipes for this lib, when the host can expose them.
factory: LibFactoryFactory used to build fresh lib instances.
Auto Trait Implementations§
impl !RefUnwindSafe for ResolvedLoadable
impl !UnwindSafe for ResolvedLoadable
impl Freeze for ResolvedLoadable
impl Send for ResolvedLoadable
impl Sync for ResolvedLoadable
impl Unpin for ResolvedLoadable
impl UnsafeUnpin for ResolvedLoadable
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