Enum asn1_rs::OidParseError
source · [−]pub enum OidParseError {
TooShort,
FirstComponentsTooLarge,
ParseIntError,
}
Expand description
An error for OID parsing functions.
Variants
TooShort
FirstComponentsTooLarge
Signalizes that the first or second component is too large. The first must be within the range 0 to 6 (inclusive). The second component must be less than 40.
ParseIntError
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for OidParseError
impl Send for OidParseError
impl Sync for OidParseError
impl Unpin for OidParseError
impl UnwindSafe for OidParseError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more