Enum openssl::ssl::ShutdownResult[][src]

pub enum ShutdownResult {
    Sent,
    Received,
}

The result of a shutdown request.

Variants

A close notify message has been sent to the peer.

A close notify response message has been received from the peer.

Trait Implementations

impl Copy for ShutdownResult
[src]

impl Clone for ShutdownResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ShutdownResult
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ShutdownResult
[src]

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

This method tests for !=.

impl Eq for ShutdownResult
[src]

Auto Trait Implementations