noxu-dbi 4.0.0

Database internals for Noxu DB
Documentation
1
2
3
4
5
6
7
8
9
10
/// Result of a database truncate operation.
///
///
#[derive(Debug, Clone)]
pub struct TruncateResult {
    /// The new (empty) database.
    pub new_db_id: crate::DatabaseId,
    /// Number of records that were in the old database.
    pub record_count: i64,
}