pub trait ClientBuilderSqliteExt<AUTH> {
// Required method
fn sqlite_store(self, database_filepath: PathBuf) -> ClientBuilder<AUTH>;
}Expand description
Extends the ClientBuilder with a method to add a SqliteStore.
Required Methods§
fn sqlite_store(self, database_filepath: PathBuf) -> ClientBuilder<AUTH>
Implementations on Foreign Types§
Source§impl<AUTH: BuilderAuthenticator> ClientBuilderSqliteExt<AUTH> for ClientBuilder<AUTH>
impl<AUTH: BuilderAuthenticator> ClientBuilderSqliteExt<AUTH> for ClientBuilder<AUTH>
Source§fn sqlite_store(self, database_filepath: PathBuf) -> ClientBuilder<AUTH>
fn sqlite_store(self, database_filepath: PathBuf) -> ClientBuilder<AUTH>
Sets a SqliteStore to the ClientBuilder. The store will be instantiated when the
build method is called.