pub struct IbanRecognizer;Expand description
Recognizes International Bank Account Numbers with MOD-97 validation.
Trait Implementations§
Source§impl Clone for IbanRecognizer
impl Clone for IbanRecognizer
Source§fn clone(&self) -> IbanRecognizer
fn clone(&self) -> IbanRecognizer
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 IbanRecognizer
impl Debug for IbanRecognizer
Source§impl Default for IbanRecognizer
impl Default for IbanRecognizer
Source§fn default() -> IbanRecognizer
fn default() -> IbanRecognizer
Returns the “default value” for a type. Read more
Source§impl Recognizer for IbanRecognizer
impl Recognizer for IbanRecognizer
Source§fn entity_type(&self) -> EntityType
fn entity_type(&self) -> EntityType
The entity type this recognizer detects.
Source§fn supported_locales(&self) -> &[Locale]
fn supported_locales(&self) -> &[Locale]
Locales this recognizer applies to. Empty means universal.
impl Copy for IbanRecognizer
Auto Trait Implementations§
impl Freeze for IbanRecognizer
impl RefUnwindSafe for IbanRecognizer
impl Send for IbanRecognizer
impl Sync for IbanRecognizer
impl Unpin for IbanRecognizer
impl UnsafeUnpin for IbanRecognizer
impl UnwindSafe for IbanRecognizer
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