pub enum BankAccountType {
CentralBankDigitalCurrency,
DigitalRegulatedMoney,
}
Variants§
Trait Implementations§
Source§impl Clone for BankAccountType
impl Clone for BankAccountType
Source§fn clone(&self) -> BankAccountType
fn clone(&self) -> BankAccountType
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 BankAccountType
impl Debug for BankAccountType
Source§impl Display for BankAccountType
impl Display for BankAccountType
Source§impl From<BankAccountType> for BankAccountType
impl From<BankAccountType> for BankAccountType
Source§fn from(account_type: BankAccountType) -> Self
fn from(account_type: BankAccountType) -> Self
Converts to this type from the input type.
Source§impl Serialize for BankAccountType
impl Serialize for BankAccountType
impl Copy for BankAccountType
Auto Trait Implementations§
impl Freeze for BankAccountType
impl RefUnwindSafe for BankAccountType
impl Send for BankAccountType
impl Sync for BankAccountType
impl Unpin for BankAccountType
impl UnwindSafe for BankAccountType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Source§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<Item> PrettyPrint for Itemwhere
Item: Serialize,
impl<Item> PrettyPrint for Itemwhere
Item: Serialize,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.