pub enum CookiesIteratorRequest {
GetNext {
responder: CookiesIteratorGetNextResponder,
},
}
Expand description
Used to iterator over a set of cookies, or a stream of changes to cookies.
Variants§
GetNext
Fetches the next batch of cookies, or of changes to cookies. RFC6265 does not specify an upper-bound on the number of cookies which may be stored.
Fields
§
responder: CookiesIteratorGetNextResponder
Implementations§
Source§impl CookiesIteratorRequest
impl CookiesIteratorRequest
pub fn into_get_next(self) -> Option<CookiesIteratorGetNextResponder>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CookiesIteratorRequest
impl !RefUnwindSafe for CookiesIteratorRequest
impl Send for CookiesIteratorRequest
impl Sync for CookiesIteratorRequest
impl Unpin for CookiesIteratorRequest
impl !UnwindSafe for CookiesIteratorRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more