der_parser::derType Alias DerClass
Source pub type DerClass = Class;
👎Deprecated since 7.0.0: Use Class
instead
Expand description
DER Object class of tag (same as BerClass
)
enum DerClass {
Universal = 0,
Application = 1,
ContextSpecific = 2,
Private = 3,
}
Universal
class of tags (0b00
)
Application
class of tags (0b01
)
Context-Specific
class of tags (0b10
)
Private
class of tags (0b11
)
Implementations
Universal
class of tags (0b00
)
Application
class of tags (0b01
)
Context-Specific
class of tags (0b10
)
Private
class of tags (0b11
)
Trait Implementations
Performs copy-assignment from
source
.
Read more
Formats the value using the given formatter.
Read more
Formats the value using the given formatter.
Read more
Tests for self
and other
values to be equal, and is used by ==
.
Tests for !=
. The default implementation is almost always sufficient,
and should not be overridden without very good reason.
The type returned in the event of a conversion error.
Performs the conversion.