pub enum ValidationError {
Empty,
WrongLength {
expected: usize,
found: usize,
},
InvalidCharacter {
position: usize,
found: char,
},
BadCheckDigit {
expected: char,
found: char,
},
InvalidCountryCode,
Structure {
rule: &'static str,
},
}Expand description
Error returned when a string is not a well-formed securities identifier.
Every identifier type has a strict grammar: an exact length (or a small
set of lengths), a per-segment character set, and — for most — a check
digit. A parse or validate call returns one of these variants the
moment an input violates that grammar.
§Examples
use regit_identifiers::errors::ValidationError;
let err = ValidationError::WrongLength { expected: 12, found: 11 };
assert_eq!(err, ValidationError::WrongLength { expected: 12, found: 11 });Variants§
Empty
The input string was empty.
WrongLength
The input has the wrong length for this identifier.
Fields
InvalidCharacter
The character at 1-based position is not allowed there.
Fields
BadCheckDigit
The recomputed check digit did not match the supplied one.
For multi-digit schemes (LEI) this reports the first differing digit.
Fields
InvalidCountryCode
The country-code segment is not a recognised code.
Structure
A structural rule of the identifier was violated; rule names it.
Trait Implementations§
Source§impl Clone for ValidationError
impl Clone for ValidationError
Source§fn clone(&self) -> ValidationError
fn clone(&self) -> ValidationError
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 moreimpl Copy for ValidationError
Source§impl Debug for ValidationError
impl Debug for ValidationError
Source§impl Display for ValidationError
impl Display for ValidationError
impl Eq for ValidationError
Source§impl Error for ValidationError
impl Error for ValidationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<ValidationError> for ConversionError
impl From<ValidationError> for ConversionError
Source§fn from(e: ValidationError) -> Self
fn from(e: ValidationError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ValidationError
impl PartialEq for ValidationError
impl StructuralPartialEq for ValidationError
Auto Trait Implementations§
impl Freeze for ValidationError
impl RefUnwindSafe for ValidationError
impl Send for ValidationError
impl Sync for ValidationError
impl Unpin for ValidationError
impl UnsafeUnpin for ValidationError
impl UnwindSafe for ValidationError
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