pub struct VerificationResult {Show 14 fields
pub captcha_id: Uuid,
pub verification_id: Uuid,
pub score: f64,
pub reason: String,
pub mode: String,
pub origin: String,
pub ip_address: String,
pub device_family: String,
pub operating_system: String,
pub browser: String,
pub creation_timestamp: String,
pub release_timestamp: String,
pub retrieval_timestamp: String,
pub verification_passed: bool,
}
Fields§
§captcha_id: Uuid
§verification_id: Uuid
§score: f64
§reason: String
§mode: String
§origin: String
§ip_address: String
§device_family: String
§operating_system: String
§browser: String
§creation_timestamp: String
§release_timestamp: String
§retrieval_timestamp: String
§verification_passed: bool
Trait Implementations§
source§impl Debug for VerificationResult
impl Debug for VerificationResult
source§impl<'de> Deserialize<'de> for VerificationResult
impl<'de> Deserialize<'de> for VerificationResult
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 VerificationResult
impl RefUnwindSafe for VerificationResult
impl Send for VerificationResult
impl Sync for VerificationResult
impl Unpin for VerificationResult
impl UnwindSafe for VerificationResult
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