Enum bluenrg::event::GapProcedure[][src]

pub enum GapProcedure {
    LimitedDiscovery,
    GeneralDiscovery,
    NameDiscovery(usize, NameBuffer),
    AutoConnectionEstablishment,
    GeneralConnectionEstablishment(BdAddr),
    SelectiveConnectionEstablishment,
    DirectConnectionEstablishment,
}

Procedures whose completion may be reported by GapProcedureComplete.

Variants

See Vol 3, Part C, section 9.2.5.

See Vol 3, Part C, section 9.2.6.

See Vol 3, Part C, section 9.2.7. Contains the number of valid bytes and buffer with enough space for the maximum length of the name that can be retuned.

See Vol 3, Part C, section 9.3.5.

See Vol 3, Part C, section 9.3.6. Contains the reconnection address.

See Vol 3, Part C, section 9.3.7.

See Vol 3, Part C, section 9.3.8.

Trait Implementations

impl Copy for GapProcedure
[src]

impl Clone for GapProcedure
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GapProcedure
[src]

Formats the value using the given formatter. Read more

impl PartialEq for GapProcedure
[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