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
sourceimpl Clone for RiskEvaluationRiskLevel
impl Clone for RiskEvaluationRiskLevel
sourcefn clone(&self) -> RiskEvaluationRiskLevel
fn clone(&self) -> RiskEvaluationRiskLevel
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for RiskEvaluationRiskLevel
impl Debug for RiskEvaluationRiskLevel
sourceimpl<'de> Deserialize<'de> for RiskEvaluationRiskLevel
impl<'de> Deserialize<'de> for RiskEvaluationRiskLevel
sourcefn 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
sourceimpl PartialEq<RiskEvaluationRiskLevel> for RiskEvaluationRiskLevel
impl PartialEq<RiskEvaluationRiskLevel> for RiskEvaluationRiskLevel
sourcefn eq(&self, other: &RiskEvaluationRiskLevel) -> bool
fn eq(&self, other: &RiskEvaluationRiskLevel) -> bool
sourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.