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>, }
Expand description
ServiceWorker version. ServiceWorkerVersion
Fields
version_id: String
registration_id: RegistrationId
script_url: String
running_status: ServiceWorkerVersionRunningStatus
status: ServiceWorkerVersionStatus
script_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
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<ServiceWorkerVersion, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<ServiceWorkerVersion, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for ServiceWorkerVersion
impl Send for ServiceWorkerVersion
impl Sync for ServiceWorkerVersion
impl Unpin for ServiceWorkerVersion
impl UnwindSafe for ServiceWorkerVersion
Blanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self
pub fn vzip(self) -> V