pub struct GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis {
pub min_valid_score: Option<f32>,
}Expand description
A settings object specifying risk tolerance and requirements for your application. These settings correspond to requirements on the riskAnalysis tuple in the assessment obtained from reCAPTCHA Enterprise. The default values for these settings work for most apps, and are recommended.
This type is not used in any activity, and only used as part of another schema.
Fields§
§min_valid_score: Option<f32>Specifies a minimum score required for a reCAPTCHA token to be considered valid. If its score is greater than or equal to this value, it will be accepted; otherwise, it will be rejected. The value must be between 0.0 and 1.0. The default value is 0.5.
Trait Implementations§
Source§impl Clone for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
impl Clone for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
Source§fn clone(
&self,
) -> GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
fn clone( &self, ) -> GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
impl Default for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
Source§fn default() -> GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
fn default() -> GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
impl<'de> Deserialize<'de> for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
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
impl Part for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
Auto Trait Implementations§
impl Freeze for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
impl RefUnwindSafe for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
impl Send for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
impl Sync for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
impl Unpin for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
impl UnwindSafe for GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
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