Struct burn_core::data::dataset::SqliteDatasetStorage
source · pub struct SqliteDatasetStorage { /* private fields */ }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 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 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