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<JsFloat>,
pub script_response_time: Option<JsFloat>,
pub controlled_clients: Option<Vec<TargetId>>,
pub target_id: Option<TargetId>,
pub router_rules: Option<String>,
}Fields§
§version_id: String§registration_id: RegistrationId§script_url: String§running_status: ServiceWorkerVersionRunningStatus§status: ServiceWorkerVersionStatus§script_last_modified: Option<JsFloat>§script_response_time: Option<JsFloat>§controlled_clients: Option<Vec<TargetId>>§target_id: Option<TargetId>§router_rules: Option<String>Trait Implementations§
Source§impl Clone for ServiceWorkerVersion
impl Clone for ServiceWorkerVersion
Source§fn clone(&self) -> ServiceWorkerVersion
fn clone(&self) -> ServiceWorkerVersion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ServiceWorkerVersion
impl Debug for ServiceWorkerVersion
Source§impl<'de> Deserialize<'de> for ServiceWorkerVersion
impl<'de> Deserialize<'de> for ServiceWorkerVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ServiceWorkerVersion
impl PartialEq for ServiceWorkerVersion
Source§impl Serialize for ServiceWorkerVersion
impl Serialize for ServiceWorkerVersion
impl StructuralPartialEq for ServiceWorkerVersion
Auto Trait Implementations§
impl Freeze for ServiceWorkerVersion
impl RefUnwindSafe for ServiceWorkerVersion
impl Send for ServiceWorkerVersion
impl Sync for ServiceWorkerVersion
impl Unpin for ServiceWorkerVersion
impl UnwindSafe for ServiceWorkerVersion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more