Trait decrypt_cookies::firefox::path::FFPath
source · pub trait FFPath {
const COOKIES: &'static str = "cookies.sqlite";
const DATAS: &'static str = "places.sqlite";
const KEY: &'static str = "key4.db";
const STORAGE: &'static str = "webappsstore.sqlite";
const PASSWD: &'static str = "logins.json";
const EXTENSIONS: &'static str = "extensions.json";
// Required method
fn base(&self) -> &PathBuf;
// Provided methods
fn extensions(&self) -> PathBuf { ... }
fn passwd(&self) -> PathBuf { ... }
fn storage(&self) -> PathBuf { ... }
fn key(&self) -> PathBuf { ... }
fn datas(&self) -> PathBuf { ... }
fn cookies(&self) -> PathBuf { ... }
fn helper(
init_path: PathBuf,
base: &str
) -> impl Future<Output = Result<PathBuf>> + Send { ... }
}
Expand description
just impl the base
method
Provided Associated Constants§
const COOKIES: &'static str = "cookies.sqlite"
const DATAS: &'static str = "places.sqlite"
const KEY: &'static str = "key4.db"
const STORAGE: &'static str = "webappsstore.sqlite"
const PASSWD: &'static str = "logins.json"
const EXTENSIONS: &'static str = "extensions.json"
Required Methods§
Provided Methods§
sourcefn extensions(&self) -> PathBuf
fn extensions(&self) -> PathBuf
json
sqlite3
fn helper( init_path: PathBuf, base: &str ) -> impl Future<Output = Result<PathBuf>> + Send
Object Safety§
This trait is not object safe.