pub enum ArtifactKind {
Show 26 variants
History,
Cookies,
Downloads,
Extensions,
LoginData,
Cache,
Bookmarks,
Autofill,
Session,
Integrity,
Carved,
Memory,
Preferences,
LocalStorage,
Permission,
CreditCard,
AuthToken,
RecoveredDomain,
Favicon,
TopSite,
Shortcut,
NetworkPrediction,
MediaPlayback,
TypedInput,
Annotation,
RecoveredBookmark,
}Expand description
Kind of browser artifact.
Variants§
History
Cookies
Downloads
Extensions
LoginData
Cache
Bookmarks
Autofill
Session
Integrity
Carved
Memory
Preferences
LocalStorage
Permission
Per-site permission grant (geolocation, camera, mic, notifications, …).
CreditCard
Stored payment-card metadata. The card number is never decrypted.
AuthToken
OAuth / sync auth-token metadata. The token itself is never decrypted.
RecoveredDomain
A domain/origin the browser contacted, recovered from a network/state artifact that survives a history wipe (HTTP server properties, NEL/ Reporting, DIPS/BTM bounce records, HSTS). Read-only, no secrets.
Favicon
A page the browser stored a favicon for (Chromium Favicons). The
page_url is an independent, cleartext source of visited URLs.
TopSite
A most-visited page cached for the new-tab page (Chromium Top Sites).
Frecency-ranked; no per-visit timestamp.
Shortcut
A string the user typed into the omnibox and the URL they selected
(Chromium Shortcuts). Direct evidence of user intent.
NetworkPrediction
A (often partial) omnibox string the user typed and the URL Chromium
learned to predict (Chromium Network Action Predictor).
MediaPlayback
Audio/video playback recorded by Chromium Media History (watch time,
resume position, media title).
TypedInput
A string the user typed into the address bar and the page it resolved to
(Firefox moz_inputhistory). Direct evidence of typed intent; carries a
decayed use_count, not a per-keystroke timestamp.
Annotation
A page annotation recorded by Firefox (moz_annos +
moz_anno_attributes): a named key/value the browser attached to a page
(reading-list state, visit-count metadata, …). Stated as recorded.
RecoveredBookmark
A bookmark found in a Firefox bookmarkbackups/*.jsonlz4 backup but
absent from the current moz_bookmarks — consistent with deletion after
that backup was written. The backup date bounds when, not who or why.
Trait Implementations§
Source§impl Clone for ArtifactKind
impl Clone for ArtifactKind
Source§fn clone(&self) -> ArtifactKind
fn clone(&self) -> ArtifactKind
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more