Trait yrs::types::GetString

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

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

Required Methods§

source

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

Displays the content of a current collection in string format.

Object Safety§

This trait is not object safe.

Implementors§