Enum ldap3::asn1::Tag [] [src]

pub enum Tag {
    Integer(Integer),
    Enumerated(Enumerated),
    Sequence(Sequence),
    Set(Set),
    OctetString(OctetString),
    Boolean(Boolean),
    Null(Null),
    ExplicitTag(ExplicitTag),
    StructureTag(StructureTag),
}

Set of basic ASN.1 types used by LDAP.

Variants

Integer value.

Integer with a different tag.

Sequence of values.

Set of values; doesn't allow duplicates.

String of bytes.

Boolean value.

Null value.

Explicitly tagged value. LDAP uses implicit tagging, but external structures might not.

Serializable value.

Trait Implementations

impl ASNTag for Tag
[src]

Encode yourself into a generic Tag format. Read more

impl PartialEq<Tag> for Tag
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for Tag
[src]

Formats the value using the given formatter.

impl Clone for Tag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more