pub trait ReadableTableMetadata {
// Required methods
fn stats(&self) -> Result<TableStats>;
fn len(&self) -> Result<u64>;
// Provided method
fn is_empty(&self) -> Result<bool> { ... }
}Required Methods§
Sourcefn stats(&self) -> Result<TableStats>
fn stats(&self) -> Result<TableStats>
Retrieves information about storage usage for the table
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".