Skip to main content

GetString

Trait GetString 

Source
pub trait GetString {
    // Required method
    fn get_string<T>(&self, txn: &T) -> String
       where T: ReadTxn;
}
Expand description

Trait implemented by shared types to display their contents in string format.

Required Methods§

Source

fn get_string<T>(&self, txn: &T) -> String
where T: ReadTxn,

Displays the content of a current collection in string format.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§