Enum bluenrg::event::L2CapConnectionUpdateResult[][src]

pub enum L2CapConnectionUpdateResult {
    CommandRejected(L2CapRejectionReason),
    ParametersRejected,
    ParametersUpdated,
}

Potential results that can be used in the L2CAP connection update response.

Variants

The update request was rejected. The code indicates the reason for the rejection.

The L2CAP connection update response is valid. The code indicates if the parameters were rejected.

The L2CAP connection update response is valid. The code indicates if the parameters were updated.

Trait Implementations

impl Copy for L2CapConnectionUpdateResult
[src]

impl Clone for L2CapConnectionUpdateResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for L2CapConnectionUpdateResult
[src]

Formats the value using the given formatter. Read more

impl PartialEq for L2CapConnectionUpdateResult
[src]

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

This method tests for !=.

Auto Trait Implementations