Trait decrypt_cookies::browser::info::ChromiumInfo

source ·
pub trait ChromiumInfo: TempPath {
Show 13 associated constants and 20 methods const BOOKMARKS: &'static str = "Bookmarks"; const COOKIES: &'static str = "Cookies"; const EXTENSION_COOKIES: &'static str = "Extension Cookies"; const HISTORY: &'static str = "History"; const LOAD_STATISTICS: &'static str = "load_statistics.db"; const LOGIN_DATA: &'static str = "Login Data"; const MEDIA_DEVICE_SALTS: &'static str = "MediaDeviceSalts"; const NETWORK_ACTION_PREDICTOR: &'static str = "Network Action Predictor"; const LOCAL_STORAGE: &'static str = "Local Storage/leveldb"; const EXTENSIONS: &'static str = "Extensions"; const SESSION_STORAGE: &'static str = "Session Storage"; const WEB_DATA: &'static str = "Web Data"; const LOCAL_STATE: &'static str = "Local State"; // Required method fn base(&self) -> &PathBuf; // Provided methods fn local_state(&self) -> PathBuf { ... } fn local_state_temp(&self) -> PathBuf { ... } fn credit(&self) -> PathBuf { ... } fn credit_temp(&self) -> PathBuf { ... } fn session(&self) -> PathBuf { ... } fn session_temp(&self) -> PathBuf { ... } fn extensions(&self) -> PathBuf { ... } fn extensions_temp(&self) -> PathBuf { ... } fn logindata(&self) -> PathBuf { ... } fn logindata_temp(&self) -> PathBuf { ... } fn storage(&self) -> PathBuf { ... } fn storage_temp(&self) -> PathBuf { ... } fn bookmarks(&self) -> PathBuf { ... } fn bookmarks_temp(&self) -> PathBuf { ... } fn history(&self) -> PathBuf { ... } fn history_temp(&self) -> PathBuf { ... } fn cookies(&self) -> PathBuf { ... } fn cookies_temp(&self) -> PathBuf { ... } fn safe_storage(&self) -> &str { ... }
}
Expand description

just impl the base method

Provided Associated Constants§

source

const BOOKMARKS: &'static str = "Bookmarks"

source

const COOKIES: &'static str = "Cookies"

source

const EXTENSION_COOKIES: &'static str = "Extension Cookies"

source

const HISTORY: &'static str = "History"

source

const LOAD_STATISTICS: &'static str = "load_statistics.db"

source

const LOGIN_DATA: &'static str = "Login Data"

source

const MEDIA_DEVICE_SALTS: &'static str = "MediaDeviceSalts"

source

const NETWORK_ACTION_PREDICTOR: &'static str = "Network Action Predictor"

source

const LOCAL_STORAGE: &'static str = "Local Storage/leveldb"

source

const EXTENSIONS: &'static str = "Extensions"

source

const SESSION_STORAGE: &'static str = "Session Storage"

source

const WEB_DATA: &'static str = "Web Data"

The webdata component manages the “web database”, a SQLite database stored in the user’s profile containing various webpage-related metadata such as autofill and web search engine data.

source

const LOCAL_STATE: &'static str = "Local State"

This directory contains shared files for the implementation of the chrome://local-state WebUI page.

Required Methods§

source

fn base(&self) -> &PathBuf

Provided Methods§

source

fn local_state(&self) -> PathBuf

json, for windows fetch passwd

source

fn local_state_temp(&self) -> PathBuf

source

fn credit(&self) -> PathBuf

sqlite3

source

fn credit_temp(&self) -> PathBuf

source

fn session(&self) -> PathBuf

leveldb

source

fn session_temp(&self) -> PathBuf

source

fn extensions(&self) -> PathBuf

a directory

source

fn extensions_temp(&self) -> PathBuf

source

fn logindata(&self) -> PathBuf

sqlite3

source

fn logindata_temp(&self) -> PathBuf

source

fn storage(&self) -> PathBuf

leveldb

source

fn storage_temp(&self) -> PathBuf

source

fn bookmarks(&self) -> PathBuf

json

source

fn bookmarks_temp(&self) -> PathBuf

source

fn history(&self) -> PathBuf

sqlite3

source

fn history_temp(&self) -> PathBuf

source

fn cookies(&self) -> PathBuf

sqlite3

source

fn cookies_temp(&self) -> PathBuf

source

fn safe_storage(&self) -> &str

for fetch password

Object Safety§

This trait is not object safe.

Implementors§