Struct chromiumoxide::cdp::browser_protocol::service_worker::ServiceWorkerVersion[][src]

pub struct ServiceWorkerVersion {
    pub version_id: String,
    pub registration_id: RegistrationId,
    pub script_url: String,
    pub running_status: ServiceWorkerVersionRunningStatus,
    pub status: ServiceWorkerVersionStatus,
    pub script_last_modified: Option<f64>,
    pub script_response_time: Option<f64>,
    pub controlled_clients: Option<Vec<TargetId, Global>>,
    pub target_id: Option<TargetId>,
}

ServiceWorker version. ServiceWorkerVersion

Fields

version_id: Stringregistration_id: RegistrationIdscript_url: Stringrunning_status: ServiceWorkerVersionRunningStatusstatus: ServiceWorkerVersionStatusscript_last_modified: Option<f64>

The Last-Modified header value of the main script.

script_response_time: Option<f64>

The time at which the response headers of the main script were received from the server. For cached script it is the last time the cache entry was validated.

controlled_clients: Option<Vec<TargetId, Global>>target_id: Option<TargetId>

Implementations

impl ServiceWorkerVersion[src]

impl ServiceWorkerVersion[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for ServiceWorkerVersion[src]

impl Debug for ServiceWorkerVersion[src]

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

impl PartialEq<ServiceWorkerVersion> for ServiceWorkerVersion[src]

impl Serialize for ServiceWorkerVersion[src]

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