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

pub struct RequestEntriesReturns {
    pub cache_data_entries: Vec<DataEntry, Global>,
    pub return_count: f64,
}

Requests data from cache. requestEntries

Fields

cache_data_entries: Vec<DataEntry, Global>

Array of object store data entries.

return_count: f64

Count of returned entries from this storage. If pathFilter is empty, it is the count of all entries from this storage.

Implementations

impl RequestEntriesReturns[src]

pub fn new(
    cache_data_entries: Vec<DataEntry, Global>,
    return_count: impl Into<f64>
) -> RequestEntriesReturns
[src]

impl RequestEntriesReturns[src]

Trait Implementations

impl Clone for RequestEntriesReturns[src]

impl Debug for RequestEntriesReturns[src]

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

impl PartialEq<RequestEntriesReturns> for RequestEntriesReturns[src]

impl Serialize for RequestEntriesReturns[src]

impl StructuralPartialEq for RequestEntriesReturns[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>,