Struct chromiumoxide::cdp::browser_protocol::cache_storage::RequestEntriesParams[][src]

pub struct RequestEntriesParams {
    pub cache_id: CacheId,
    pub skip_count: Option<i64>,
    pub page_size: Option<i64>,
    pub path_filter: Option<String>,
}

Requests data from cache. requestEntries

Fields

cache_id: CacheId

ID of cache to get entries from.

skip_count: Option<i64>

Number of records to skip.

page_size: Option<i64>

Number of records to fetch.

path_filter: Option<String>

If present, only return the entries containing this substring in the path

Implementations

impl RequestEntriesParams[src]

pub fn new(cache_id: impl Into<CacheId>) -> RequestEntriesParams[src]

impl RequestEntriesParams[src]

impl RequestEntriesParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for RequestEntriesParams[src]

impl Command for RequestEntriesParams[src]

type Response = RequestEntriesReturns

The type of the response this request triggers on the chromium server

impl Debug for RequestEntriesParams[src]

impl<'de> Deserialize<'de> for RequestEntriesParams[src]

impl Method for RequestEntriesParams[src]

impl MethodType for RequestEntriesParams[src]

impl PartialEq<RequestEntriesParams> for RequestEntriesParams[src]

impl Serialize for RequestEntriesParams[src]

impl StructuralPartialEq for RequestEntriesParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,