pub enum ObjectIdentifierError {
IllegalRootNode,
IllegalFirstChildNode,
IllegalChildNodeValue,
}
Expand description
Object Identifier Errors
Variants§
IllegalRootNode
Failed to parse OID due to illegal root node (must be 0-2 decimal)
IllegalFirstChildNode
Failed to parse OID due to illegal first node (must be 0-39 decimal)
IllegalChildNodeValue
Failed to parse OID due to illegal child node value (except first node)
Trait Implementations§
Source§impl Clone for ObjectIdentifierError
impl Clone for ObjectIdentifierError
Source§fn clone(&self) -> ObjectIdentifierError
fn clone(&self) -> ObjectIdentifierError
Returns a copy 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 ObjectIdentifierError
impl Debug for ObjectIdentifierError
Source§impl PartialEq for ObjectIdentifierError
impl PartialEq for ObjectIdentifierError
impl Copy for ObjectIdentifierError
impl Eq for ObjectIdentifierError
impl StructuralPartialEq for ObjectIdentifierError
Auto Trait Implementations§
impl Freeze for ObjectIdentifierError
impl RefUnwindSafe for ObjectIdentifierError
impl Send for ObjectIdentifierError
impl Sync for ObjectIdentifierError
impl Unpin for ObjectIdentifierError
impl UnwindSafe for ObjectIdentifierError
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