#[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 (const: unstable) · 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<ServiceBlockedCode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ServiceBlockedCode, <__D as Deserializer<'de>>::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§fn eq(&self, other: &ServiceBlockedCode) -> bool
fn eq(&self, other: &ServiceBlockedCode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceBlockedCode
impl Serialize for ServiceBlockedCode
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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 UnsafeUnpin for ServiceBlockedCode
impl UnwindSafe for ServiceBlockedCode
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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