pub struct RuntimeConfigResolver { /* private fields */ }
Expand description
Spin’s default resolution of runtime configuration for SQLite databases.
This type implements how Spin CLI’s SQLite implementation is configured through the runtime config toml as well as the behavior of the “default” label.
Implementations§
Source§impl RuntimeConfigResolver
impl RuntimeConfigResolver
Sourcepub fn new(
default_database_dir: Option<PathBuf>,
local_database_dir: PathBuf,
) -> Self
pub fn new( default_database_dir: Option<PathBuf>, local_database_dir: PathBuf, ) -> Self
Create a new SpinSqliteRuntimeConfig
This takes as arguments:
- the directory to use as the default location for SQLite databases.
Usually this will be the path to the
.spin
state directory. IfNone
, the default database will be in-memory. - the path to the directory from which relative paths to local SQLite databases are resolved. (this should most likely be the path to the runtime-config file or the current working dir).
Sourcepub fn resolve(&self, table: &impl GetTomlValue) -> Result<RuntimeConfig>
pub fn resolve(&self, table: &impl GetTomlValue) -> Result<RuntimeConfig>
Get the runtime configuration for SQLite databases from a TOML table.
Expects table to be in the format:
[sqlite_database.$database-label]
type = "$database-type"
... extra type specific configuration ...
```
Configuration is automatically added for the 'default' label if it is not provided.
Sourcepub fn get_connection_creator(
&self,
config: TomlRuntimeConfig,
) -> Result<Arc<dyn ConnectionCreator>>
pub fn get_connection_creator( &self, config: TomlRuntimeConfig, ) -> Result<Arc<dyn ConnectionCreator>>
Get a connection creator for a given runtime configuration.
Trait Implementations§
Source§impl Clone for RuntimeConfigResolver
impl Clone for RuntimeConfigResolver
Source§fn clone(&self) -> RuntimeConfigResolver
fn clone(&self) -> RuntimeConfigResolver
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for RuntimeConfigResolver
impl RefUnwindSafe for RuntimeConfigResolver
impl Send for RuntimeConfigResolver
impl Sync for RuntimeConfigResolver
impl Unpin for RuntimeConfigResolver
impl UnwindSafe for RuntimeConfigResolver
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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