Struct burn::data::dataset::SqliteDatasetStorage
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§
§impl SqliteDatasetStorage
impl SqliteDatasetStorage
pub 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.
pub 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.
pub 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.
pub 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.
pub fn writer<I>(
&self,
overwrite: bool,
) -> Result<SqliteDatasetWriter<I>, SqliteDatasetError>
pub fn writer<I>( &self, overwrite: bool, ) -> Result<SqliteDatasetWriter<I>, SqliteDatasetError>
pub fn reader<I>(
&self,
split: &str,
) -> Result<SqliteDataset<I>, SqliteDatasetError>
pub fn reader<I>( &self, split: &str, ) -> Result<SqliteDataset<I>, SqliteDatasetError>
Trait Implementations§
§impl Clone for SqliteDatasetStorage
impl Clone for SqliteDatasetStorage
§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 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
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
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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