pub struct AppEntry {
pub id: Option<String>,
pub timestamp: i64,
pub source: String,
pub cookies: Option<Vec<CookieInfo>>,
pub local_storage: Option<HashMap<String, String>>,
pub session_storage: Option<HashMap<String, String>>,
pub service_workers: Option<Vec<ServiceWorkerInfo>>,
pub cache_storage: Option<Vec<CacheInfo>>,
pub permissions: Option<Vec<PermissionInfo>>,
pub storage_estimate: Option<StorageEstimate>,
}Expand description
A snapshot of browser application state.
Fields§
§id: Option<String>Unique entry identifier (6-char hex).
timestamp: i64Unix epoch milliseconds.
source: String"browser" (app entries always come from the browser).
Browser cookies.
local_storage: Option<HashMap<String, String>>Local storage key-value pairs.
session_storage: Option<HashMap<String, String>>Session storage key-value pairs.
service_workers: Option<Vec<ServiceWorkerInfo>>Registered service workers.
cache_storage: Option<Vec<CacheInfo>>Cache storage entries.
permissions: Option<Vec<PermissionInfo>>Browser permissions.
storage_estimate: Option<StorageEstimate>Storage estimate.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AppEntry
impl<'de> Deserialize<'de> for AppEntry
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
Auto Trait Implementations§
impl Freeze for AppEntry
impl RefUnwindSafe for AppEntry
impl Send for AppEntry
impl Sync for AppEntry
impl Unpin for AppEntry
impl UnsafeUnpin for AppEntry
impl UnwindSafe for AppEntry
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