#[non_exhaustive]pub enum RecoveryField {
ReasonCode,
OperatorReference,
}Expand description
Recovery request field category.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ReasonCode
Stable machine-readable reason code.
OperatorReference
Opaque authenticated-operator correlation.
Trait Implementations§
Source§impl Clone for RecoveryField
impl Clone for RecoveryField
Source§fn clone(&self) -> RecoveryField
fn clone(&self) -> RecoveryField
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RecoveryField
Source§impl Debug for RecoveryField
impl Debug for RecoveryField
impl Eq for RecoveryField
Source§impl PartialEq for RecoveryField
impl PartialEq for RecoveryField
impl StructuralPartialEq for RecoveryField
Auto Trait Implementations§
impl Freeze for RecoveryField
impl RefUnwindSafe for RecoveryField
impl Send for RecoveryField
impl Sync for RecoveryField
impl Unpin for RecoveryField
impl UnsafeUnpin for RecoveryField
impl UnwindSafe for RecoveryField
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