pub struct SqliteDatasetStorage { /* private fields */ }Available on crate features
std and dataset only.Expand description
The SqliteDatasetStorage struct represents a SQLite database for storing datasets.
It consists of an optional name, a database file path, and a base directory for storage.
Implementations§
Source§impl SqliteDatasetStorage
impl SqliteDatasetStorage
Sourcepub fn from_name(name: &str) -> SqliteDatasetStorage
pub fn from_name(name: &str) -> SqliteDatasetStorage
Creates a new instance of SqliteDatasetStorage using a dataset name.
§Arguments
name- A string slice that holds the name of the dataset.
Sourcepub fn from_file<P>(db_file: P) -> SqliteDatasetStorage
pub fn from_file<P>(db_file: P) -> SqliteDatasetStorage
Creates a new instance of SqliteDatasetStorage using a database file path.
§Arguments
db_file- A reference to the Path that represents the database file path.
Sourcepub fn with_base_dir<P>(self, base_dir: P) -> SqliteDatasetStorage
pub fn with_base_dir<P>(self, base_dir: P) -> SqliteDatasetStorage
Sets the base directory for storing the dataset.
§Arguments
base_dir- A string slice that represents the base directory.
Sourcepub fn exists(&self) -> bool
pub fn exists(&self) -> bool
Checks if the database file exists in the given path.
§Returns
- A boolean value indicating whether the file exists or not.
Sourcepub fn writer<I>(
&self,
overwrite: bool,
) -> Result<SqliteDatasetWriter<I>, SqliteDatasetError>
pub fn writer<I>( &self, overwrite: bool, ) -> Result<SqliteDatasetWriter<I>, SqliteDatasetError>
Sourcepub fn reader<I>(
&self,
split: &str,
) -> Result<SqliteDataset<I>, SqliteDatasetError>
pub fn reader<I>( &self, split: &str, ) -> Result<SqliteDataset<I>, SqliteDatasetError>
Trait Implementations§
Source§impl Clone for SqliteDatasetStorage
impl Clone for SqliteDatasetStorage
Source§fn clone(&self) -> SqliteDatasetStorage
fn clone(&self) -> SqliteDatasetStorage
Returns a duplicate 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 SqliteDatasetStorage
impl RefUnwindSafe for SqliteDatasetStorage
impl Send for SqliteDatasetStorage
impl Sync for SqliteDatasetStorage
impl Unpin for SqliteDatasetStorage
impl UnwindSafe for SqliteDatasetStorage
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