[][src]Struct findomain::args::Args

pub struct Args {
    pub target: String,
    pub file_name: String,
    pub postgres_connection: String,
    pub discord_webhook: String,
    pub slack_webhook: String,
    pub telegram_bot_token: String,
    pub telegram_webhook: String,
    pub telegram_chat_id: String,
    pub version: String,
    pub current_executable_path: String,
    pub spyse_access_token: String,
    pub facebook_access_token: String,
    pub virustotal_access_token: String,
    pub securitytrails_access_token: String,
    pub c99_api_key: String,
    pub threads: usize,
    pub database_checker_counter: usize,
    pub commit_to_db_counter: usize,
    pub only_resolved: bool,
    pub with_ip: bool,
    pub with_output: bool,
    pub unique_output_flag: bool,
    pub monitoring_flag: bool,
    pub from_file_flag: bool,
    pub quiet_flag: bool,
    pub query_database: bool,
    pub with_imported_subdomains: bool,
    pub enable_dot: bool,
    pub ipv6_only: bool,
    pub enable_empty_push: bool,
    pub check_updates: bool,
    pub as_resolver: bool,
    pub bruteforce: bool,
    pub disable_wildcard_check: bool,
    pub custom_resolvers: bool,
    pub files: Vec<String>,
    pub subdomains: HashSet<String>,
    pub wordlists_data: HashSet<String>,
    pub wilcard_ips: HashSet<String>,
    pub excluded_sources: HashSet<String>,
    pub import_subdomains_from: Vec<String>,
    pub wordlists: Vec<String>,
    pub resolvers: Vec<String>,
    pub time_wasted: Instant,
}

Fields

target: Stringfile_name: Stringpostgres_connection: Stringdiscord_webhook: Stringslack_webhook: Stringtelegram_bot_token: Stringtelegram_webhook: Stringtelegram_chat_id: Stringversion: Stringcurrent_executable_path: Stringspyse_access_token: Stringfacebook_access_token: Stringvirustotal_access_token: Stringsecuritytrails_access_token: Stringc99_api_key: Stringthreads: usizedatabase_checker_counter: usizecommit_to_db_counter: usizeonly_resolved: boolwith_ip: boolwith_output: boolunique_output_flag: boolmonitoring_flag: boolfrom_file_flag: boolquiet_flag: boolquery_database: boolwith_imported_subdomains: boolenable_dot: boolipv6_only: boolenable_empty_push: boolcheck_updates: boolas_resolver: boolbruteforce: booldisable_wildcard_check: boolcustom_resolvers: boolfiles: Vec<String>subdomains: HashSet<String>wordlists_data: HashSet<String>wilcard_ips: HashSet<String>excluded_sources: HashSet<String>import_subdomains_from: Vec<String>wordlists: Vec<String>resolvers: Vec<String>time_wasted: Instant

Auto Trait Implementations

impl RefUnwindSafe for Args

impl Send for Args

impl Sync for Args

impl Unpin for Args

impl UnwindSafe for Args

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,