pub struct SqliteBootstrapDescriptor;Expand description
Plugin descriptor for the SQLite bootstrap provider.
Trait Implementations§
Source§impl BootstrapPluginDescriptor for SqliteBootstrapDescriptor
impl BootstrapPluginDescriptor for SqliteBootstrapDescriptor
Source§fn kind(&self) -> &str
fn kind(&self) -> &str
The unique kind identifier for this bootstrapper (e.g.,
"postgres", "scriptfile").Source§fn config_version(&self) -> &str
fn config_version(&self) -> &str
The semver version of this plugin’s configuration DTO.
Source§fn config_schema_name(&self) -> &str
fn config_schema_name(&self) -> &str
Returns the OpenAPI schema name for this plugin’s configuration DTO.
Source§fn config_schema_json(&self) -> String
fn config_schema_json(&self) -> String
Returns all OpenAPI schemas as a JSON-serialized map (see
SourcePluginDescriptor::config_schema_json).Source§fn create_bootstrap_provider<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
config_json: &'life1 Value,
_source_config_json: &'life2 Value,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn BootstrapProvider>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn create_bootstrap_provider<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
config_json: &'life1 Value,
_source_config_json: &'life2 Value,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn BootstrapProvider>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Create a new bootstrap provider from the given configuration. Read more
Source§fn display_name(&self) -> &str
fn display_name(&self) -> &str
Human-readable display name for this bootstrap kind.
Source§fn display_description(&self) -> &str
fn display_description(&self) -> &str
Human-readable description of this bootstrap plugin.
Source§fn display_icon(&self) -> &str
fn display_icon(&self) -> &str
Icon identifier for this bootstrap kind.
Auto Trait Implementations§
impl Freeze for SqliteBootstrapDescriptor
impl RefUnwindSafe for SqliteBootstrapDescriptor
impl Send for SqliteBootstrapDescriptor
impl Sync for SqliteBootstrapDescriptor
impl Unpin for SqliteBootstrapDescriptor
impl UnsafeUnpin for SqliteBootstrapDescriptor
impl UnwindSafe for SqliteBootstrapDescriptor
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