pub struct SqliteDatasetStorage { /* private fields */ }Available on crate features
sqlite or sqlite-bundled 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) -> Self
pub fn from_name(name: &str) -> Self
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: AsRef<Path>>(db_file: P) -> Self
pub fn from_file<P: AsRef<Path>>(db_file: P) -> Self
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: AsRef<Path>>(self, base_dir: P) -> Self
pub fn with_base_dir<P: AsRef<Path>>(self, base_dir: P) -> Self
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>>
pub fn writer<I>(&self, overwrite: bool) -> Result<SqliteDatasetWriter<I>>
Sourcepub fn reader<I>(&self, split: &str) -> Result<SqliteDataset<I>>
pub fn reader<I>(&self, split: &str) -> Result<SqliteDataset<I>>
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