Struct eagre_asn1::types::UniversalString [] [src]

pub struct UniversalString(_);

Asn1 String Type

Currently restricted character sets are not enforced, so it is the callers job to check wether string contents are legal for the specific string type

Trait Implementations

impl Debug for UniversalString
[src]

[src]

Formats the value using the given formatter. Read more

impl From<String> for UniversalString
[src]

[src]

Performs the conversion.

impl From<UniversalString> for String
[src]

[src]

Performs the conversion.

impl DER for UniversalString
[src]

[src]

Return universal tag of this type

[src]

Return content type of this type

[src]

Encode the content octets

[src]

Decode the content octets

[src]

Create Intermediate from this object

[src]

Fully encode into stream ( tag bytes + length bytes + content bytes )

[src]

Return fully encoded bytes (wrapper for der_encode() for easier use)

[src]

Create object from Intermediate

[src]

Create object from stream

[src]

Create object from bytes

Auto Trait Implementations