pub struct IpFactors {
pub is_proxy: bool,
pub is_tor_node: bool,
pub is_spam: bool,
pub is_vpn: bool,
pub is_datacenter: bool,
pub risk_contribution: f64,
}Fields§
§is_proxy: bool§is_tor_node: bool§is_spam: bool§is_vpn: bool§is_datacenter: bool§risk_contribution: f64Trait Implementations§
Source§impl<'de> Deserialize<'de> for IpFactors
impl<'de> Deserialize<'de> for IpFactors
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for IpFactors
impl RefUnwindSafe for IpFactors
impl Send for IpFactors
impl Sync for IpFactors
impl Unpin for IpFactors
impl UnsafeUnpin for IpFactors
impl UnwindSafe for IpFactors
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more