pub trait BorrowedValueExt {
// Required methods
fn get_str(&self, key: &str) -> Option<&str>;
fn get_u64(&self, key: &str) -> Option<u64>;
fn get_f64(&self, key: &str) -> Option<f64>;
fn get_bool(&self, key: &str) -> Option<bool>;
}Expand description
Extension trait for zero-copy extraction from BorrowedValue