//! Storage functionality for memvid-rs
//!//! This module provides database operations using embedded SQLite.
pubmoddatabase;pubmodmigrations;pubmodschema;// Re-export main types
pubusedatabase::Database;/// Encoding statistics
#[derive(Debug, Clone)]pubstructEncodingStats{/// Total number of chunks processed
pubtotal_chunks:usize,
/// Total number of frames created
pubtotal_frames:usize,
/// Total processing time in seconds
pubprocessing_time:f64,
/// Video file size in bytes
pubvideo_file_size:u64,
}