pub(crate) trait StorageManagerMethods<D>where
D: DomTypes,{
// Required methods
fn Persisted(
&self,
realm: &mut CurrentRealm<'_>,
) -> Rc<<D as DomTypes>::Promise>;
fn Persist(
&self,
realm: &mut CurrentRealm<'_>,
) -> Rc<<D as DomTypes>::Promise>;
fn Estimate(
&self,
realm: &mut CurrentRealm<'_>,
) -> Rc<<D as DomTypes>::Promise>;
}