pub trait IntoDocumentPath: Send + Sync {
    // Required method
    fn as_path(&self) -> Option<&'static str>;
}

Required Methods§

source

fn as_path(&self) -> Option<&'static str>

Create JSON key path

Implementors§