pub enum PixKeyType {
Uuid,
Email,
Phone,
Cpf,
Cnpj,
Random,
}
Expand description
PIX key types
Variants§
Uuid
UUID format key
Email address
Phone
Phone number (+5511999999999)
Cpf
CPF (individual taxpayer number)
Cnpj
CNPJ (company taxpayer number)
Random
Random key (alphanumeric)
Trait Implementations§
Source§impl Clone for PixKeyType
impl Clone for PixKeyType
Source§fn clone(&self) -> PixKeyType
fn clone(&self) -> PixKeyType
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 PixKeyType
impl Debug for PixKeyType
Source§impl PartialEq for PixKeyType
impl PartialEq for PixKeyType
impl StructuralPartialEq for PixKeyType
Auto Trait Implementations§
impl Freeze for PixKeyType
impl RefUnwindSafe for PixKeyType
impl Send for PixKeyType
impl Sync for PixKeyType
impl Unpin for PixKeyType
impl UnwindSafe for PixKeyType
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