Trait CookieStoreMethods
Source pub trait CookieStoreMethods<D: DomTypes> {
// Required methods
fn Get(&self, name: USVString, _can_gc: CanGc) -> Rc<D::Promise>;
fn Get_(
&self,
options: &CookieStoreGetOptions,
_can_gc: CanGc,
) -> Rc<D::Promise>;
fn GetAll(&self, name: USVString, _can_gc: CanGc) -> Rc<D::Promise>;
fn GetAll_(
&self,
options: &CookieStoreGetOptions,
_can_gc: CanGc,
) -> Rc<D::Promise>;
fn Set(
&self,
name: USVString,
value: USVString,
_can_gc: CanGc,
) -> Rc<D::Promise>;
fn Set_(&self, options: &CookieInit, _can_gc: CanGc) -> Rc<D::Promise>;
fn Delete(&self, name: USVString, _can_gc: CanGc) -> Rc<D::Promise>;
fn Delete_(
&self,
options: &CookieStoreDeleteOptions,
_can_gc: CanGc,
) -> Rc<D::Promise>;
}