Struct eagre_asn1::types::PrintableString [] [src]

pub struct PrintableString(_);

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 PrintableString
[src]

[src]

Formats the value using the given formatter. Read more

impl From<String> for PrintableString
[src]

[src]

Performs the conversion.

impl From<PrintableString> for String
[src]

[src]

Performs the conversion.

impl DER for PrintableString
[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