pub(crate) trait NavigationPreloadManagerMethods<D>where
D: DomTypes,{
// Required methods
fn Enable(
&self,
realm: &mut CurrentRealm<'_>,
) -> Rc<<D as DomTypes>::Promise>;
fn Disable(
&self,
realm: &mut CurrentRealm<'_>,
) -> Rc<<D as DomTypes>::Promise>;
fn SetHeaderValue(
&self,
realm: &mut CurrentRealm<'_>,
value: ByteString,
) -> Rc<<D as DomTypes>::Promise>;
fn GetState(
&self,
realm: &mut CurrentRealm<'_>,
) -> Rc<<D as DomTypes>::Promise>;
}