pub trait IntoNostrDatabase { }
Expand description

A type that can be type-erased into Arc<dyn NostrDatabase>.

Implementations on Foreign Types§

source§

impl IntoNostrDatabase for Arc<DynNostrDatabase>

source§

impl<T> IntoNostrDatabase for Arc<T>
where T: NostrDatabase + 'static,

Implementors§

source§

impl<T> IntoNostrDatabase for T
where T: NostrDatabase + Sized + 'static,