Struct rasn_compiler::intermediate::ObjectIdentifierArc
source · pub struct ObjectIdentifierArc {
pub name: Option<String>,
pub number: Option<u128>,
}
Expand description
Represents a single arc of an object identifier value as specified in Rec. ITU-T X.680 (02/2021) §32
Fields§
§name: Option<String>
§number: Option<u128>
Trait Implementations§
source§impl Clone for ObjectIdentifierArc
impl Clone for ObjectIdentifierArc
source§fn clone(&self) -> ObjectIdentifierArc
fn clone(&self) -> ObjectIdentifierArc
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 ObjectIdentifierArc
impl Debug for ObjectIdentifierArc
source§impl From<&str> for ObjectIdentifierArc
impl From<&str> for ObjectIdentifierArc
source§impl From<u128> for ObjectIdentifierArc
impl From<u128> for ObjectIdentifierArc
source§impl PartialEq for ObjectIdentifierArc
impl PartialEq for ObjectIdentifierArc
source§fn eq(&self, other: &ObjectIdentifierArc) -> bool
fn eq(&self, other: &ObjectIdentifierArc) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ObjectIdentifierArc
Auto Trait Implementations§
impl RefUnwindSafe for ObjectIdentifierArc
impl Send for ObjectIdentifierArc
impl Sync for ObjectIdentifierArc
impl Unpin for ObjectIdentifierArc
impl UnwindSafe for ObjectIdentifierArc
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