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

pub struct Cache {
    pub cache_id: CacheId,
    pub security_origin: String,
    pub cache_name: String,
}

Cache identifier. Cache

Fields

cache_id: CacheId

An opaque unique id of the cache.

security_origin: String

Security origin of the cache.

cache_name: String

The name of the cache.

Implementations

impl Cache[src]

pub fn new(
    cache_id: impl Into<CacheId>,
    security_origin: impl Into<String>,
    cache_name: impl Into<String>
) -> Cache
[src]

impl Cache[src]

impl Cache[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for Cache[src]

impl Debug for Cache[src]

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

impl PartialEq<Cache> for Cache[src]

impl Serialize for Cache[src]

impl StructuralPartialEq for Cache[src]

Auto Trait Implementations

impl RefUnwindSafe for Cache

impl Send for Cache

impl Sync for Cache

impl Unpin for Cache

impl UnwindSafe for Cache

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>,