[][src]Module ldap3::exop

Extended operation construction and parsing.

A generic exop is represented by Exop. If a particular exop is implemented by this library, it may have one or two associated structs; one for constructing requests, and another for parsing responses. If request and response are the same, there is only the request struct; if they are different, the response struct's name will consist of the request struct name with the Resp suffix.

A request struct must implement the From conversion of itself into Exop. A response struct must implement the ExopParser trait.

Structs

Exop

Generic extended operation.

PasswordModify

Password Modify extended operation (RFC 3062).

PasswordModifyResp

Password Modify response.

WhoAmI

Who Am I extended operation (RFC 4532).

WhoAmIResp

Who Am I response.

Traits

ExopParser

Conversion trait for Extended response values.