pub enum RiskEvaluationRiskLevel {
Pending,
Normal,
Moderate,
High,
}
Expand description
The risk level associated with a payment.
Variants§
Pending
Indicates Square is still evaluating the payment.
Normal
Indicates payment risk is within the normal range.
Moderate
Indicates elevated risk level associated with the payment.
High
Indicates significantly elevated risk level with the payment.
Trait Implementations§
source§impl Clone for RiskEvaluationRiskLevel
impl Clone for RiskEvaluationRiskLevel
source§fn clone(&self) -> RiskEvaluationRiskLevel
fn clone(&self) -> RiskEvaluationRiskLevel
Returns a copy 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 Debug for RiskEvaluationRiskLevel
impl Debug for RiskEvaluationRiskLevel
source§impl<'de> Deserialize<'de> for RiskEvaluationRiskLevel
impl<'de> Deserialize<'de> for RiskEvaluationRiskLevel
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
source§impl PartialEq<RiskEvaluationRiskLevel> for RiskEvaluationRiskLevel
impl PartialEq<RiskEvaluationRiskLevel> for RiskEvaluationRiskLevel
source§fn eq(&self, other: &RiskEvaluationRiskLevel) -> bool
fn eq(&self, other: &RiskEvaluationRiskLevel) -> bool
source§impl Serialize for RiskEvaluationRiskLevel
impl Serialize for RiskEvaluationRiskLevel
impl Eq for RiskEvaluationRiskLevel
impl StructuralEq for RiskEvaluationRiskLevel
impl StructuralPartialEq for RiskEvaluationRiskLevel
Auto Trait Implementations§
impl RefUnwindSafe for RiskEvaluationRiskLevel
impl Send for RiskEvaluationRiskLevel
impl Sync for RiskEvaluationRiskLevel
impl Unpin for RiskEvaluationRiskLevel
impl UnwindSafe for RiskEvaluationRiskLevel
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.