#[non_exhaustive]pub enum ServiceBlockedCode {
MissingSetup,
ActionRequired,
}
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.
MissingSetup
Something is not set up for the user, e.g., there are no TAN methods.
ActionRequired
User attention is required via another channel. Typically the user needs to log into the Online Banking.
Trait Implementations§
Source§impl Clone for ServiceBlockedCode
impl Clone for ServiceBlockedCode
Source§fn clone(&self) -> ServiceBlockedCode
fn clone(&self) -> ServiceBlockedCode
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 Debug for ServiceBlockedCode
impl Debug for ServiceBlockedCode
Source§impl<'de> Deserialize<'de> for ServiceBlockedCode
impl<'de> Deserialize<'de> for ServiceBlockedCode
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 for ServiceBlockedCode
impl PartialEq for ServiceBlockedCode
Source§impl Serialize for ServiceBlockedCode
impl Serialize for ServiceBlockedCode
impl Copy for ServiceBlockedCode
impl Eq for ServiceBlockedCode
impl StructuralPartialEq for ServiceBlockedCode
Auto Trait Implementations§
impl Freeze for ServiceBlockedCode
impl RefUnwindSafe for ServiceBlockedCode
impl Send for ServiceBlockedCode
impl Sync for ServiceBlockedCode
impl Unpin for ServiceBlockedCode
impl UnwindSafe for ServiceBlockedCode
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