pub enum ObjectIdentifierComponent {
NameForm(String),
NumberForm(u64),
NameAndNumberForm(String, u64),
}Expand description
The object-identifier is described in ITU-T X.680 | ISO/IEC 8824-1:2015 in chapter 32. The XML-related definitions as well as’DefinedValue’ is ignored by this implementation.
Variants§
Trait Implementations§
Source§impl Clone for ObjectIdentifierComponent
impl Clone for ObjectIdentifierComponent
Source§fn clone(&self) -> ObjectIdentifierComponent
fn clone(&self) -> ObjectIdentifierComponent
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 ObjectIdentifierComponent
impl Debug for ObjectIdentifierComponent
Source§impl PartialEq for ObjectIdentifierComponent
impl PartialEq for ObjectIdentifierComponent
Source§fn eq(&self, other: &ObjectIdentifierComponent) -> bool
fn eq(&self, other: &ObjectIdentifierComponent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ObjectIdentifierComponent
impl PartialOrd for ObjectIdentifierComponent
impl Eq for ObjectIdentifierComponent
impl StructuralPartialEq for ObjectIdentifierComponent
Auto Trait Implementations§
impl Freeze for ObjectIdentifierComponent
impl RefUnwindSafe for ObjectIdentifierComponent
impl Send for ObjectIdentifierComponent
impl Sync for ObjectIdentifierComponent
impl Unpin for ObjectIdentifierComponent
impl UnsafeUnpin for ObjectIdentifierComponent
impl UnwindSafe for ObjectIdentifierComponent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.