pub struct Traits<'a> {Show 16 fields
pub autonomous_system_number: Option<u32>,
pub autonomous_system_organization: Option<&'a str>,
pub connection_type: Option<&'a str>,
pub domain: Option<&'a str>,
pub is_anonymous: Option<bool>,
pub is_anonymous_vpn: Option<bool>,
pub is_anycast: Option<bool>,
pub is_hosting_provider: Option<bool>,
pub isp: Option<&'a str>,
pub is_public_proxy: Option<bool>,
pub is_residential_proxy: Option<bool>,
pub is_tor_exit_node: Option<bool>,
pub mobile_country_code: Option<&'a str>,
pub mobile_network_code: Option<&'a str>,
pub organization: Option<&'a str>,
pub user_type: Option<&'a str>,
}Expand description
Extended traits data for Enterprise records.
Contains ISP, organization, connection type, and anonymity information.
Fields§
§autonomous_system_number: Option<u32>The autonomous system number (ASN) for the IP address.
autonomous_system_organization: Option<&'a str>The organization associated with the registered ASN.
connection_type: Option<&'a str>The connection type. Possible values include “Dialup”, “Cable/DSL”, “Corporate”, “Cellular”, and “Satellite”.
domain: Option<&'a str>The second-level domain associated with the IP address (e.g., “example.com”).
is_anonymous: Option<bool>True if the IP belongs to any sort of anonymous network.
is_anonymous_vpn: Option<bool>True if the IP is registered to an anonymous VPN provider.
is_anycast: Option<bool>True if the IP belongs to an anycast network. See https://en.wikipedia.org/wiki/Anycast.
is_hosting_provider: Option<bool>True if the IP belongs to a hosting or VPN provider.
isp: Option<&'a str>The name of the ISP associated with the IP address.
is_public_proxy: Option<bool>True if the IP belongs to a public proxy.
is_residential_proxy: Option<bool>True if the IP is on a suspected anonymizing network and belongs to a residential ISP.
is_tor_exit_node: Option<bool>True if the IP is a Tor exit node.
mobile_country_code: Option<&'a str>The mobile country code (MCC) associated with the IP. See https://en.wikipedia.org/wiki/Mobile_country_code.
mobile_network_code: Option<&'a str>The mobile network code (MNC) associated with the IP. See https://en.wikipedia.org/wiki/Mobile_network_code.
organization: Option<&'a str>The name of the organization associated with the IP address.
user_type: Option<&'a str>The user type associated with the IP address. Possible values include “business”, “cafe”, “cellular”, “college”, “government”, “hosting”, “library”, “military”, “residential”, “router”, “school”, “search_engine_spider”, and “traveler”.