pub enum InformationObjectField {
TypeField(TypeField),
FixedValueField(FixedValueField),
ObjectSetField(ObjectSetField),
}
Variants§
Implementations§
source§impl InformationObjectField
impl InformationObjectField
sourcepub fn identifier(&self) -> &String
pub fn identifier(&self) -> &String
Returns the identifier of an InformationObjectField
source§impl InformationObjectField
impl InformationObjectField
pub fn link_object_set_reference( &mut self, tlds: &BTreeMap<String, ToplevelDefinition> ) -> bool
pub fn references_object_set_by_name(&self) -> bool
Trait Implementations§
source§impl Clone for InformationObjectField
impl Clone for InformationObjectField
source§fn clone(&self) -> InformationObjectField
fn clone(&self) -> InformationObjectField
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 InformationObjectField
impl Debug for InformationObjectField
source§impl From<(ObjectFieldIdentifier, ASN1Type)> for InformationObjectField
impl From<(ObjectFieldIdentifier, ASN1Type)> for InformationObjectField
source§fn from(value: (ObjectFieldIdentifier, ASN1Type)) -> Self
fn from(value: (ObjectFieldIdentifier, ASN1Type)) -> Self
Converts to this type from the input type.
source§impl From<(ObjectFieldIdentifier, ASN1Value)> for InformationObjectField
impl From<(ObjectFieldIdentifier, ASN1Value)> for InformationObjectField
source§fn from(value: (ObjectFieldIdentifier, ASN1Value)) -> Self
fn from(value: (ObjectFieldIdentifier, ASN1Value)) -> Self
Converts to this type from the input type.
source§impl From<(ObjectFieldIdentifier, ObjectSet)> for InformationObjectField
impl From<(ObjectFieldIdentifier, ObjectSet)> for InformationObjectField
source§fn from(value: (ObjectFieldIdentifier, ObjectSet)) -> Self
fn from(value: (ObjectFieldIdentifier, ObjectSet)) -> Self
Converts to this type from the input type.
source§impl PartialEq for InformationObjectField
impl PartialEq for InformationObjectField
source§fn eq(&self, other: &InformationObjectField) -> bool
fn eq(&self, other: &InformationObjectField) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InformationObjectField
Auto Trait Implementations§
impl RefUnwindSafe for InformationObjectField
impl Send for InformationObjectField
impl Sync for InformationObjectField
impl Unpin for InformationObjectField
impl UnwindSafe for InformationObjectField
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