Struct bluenrg::event::AttributeValue[][src]

pub struct AttributeValue {
    pub conn_handle: ConnectionHandle,
    pub attribute_handle: AttributeHandle,
    // some fields omitted
}

Defines the attribute value returned by a GATT Indication or GATT Notification event.

Fields

The connection handle related to the event.

The handle of the attribute.

Methods

impl AttributeValue
[src]

Returns the current value of the attribute.

Trait Implementations

impl Copy for AttributeValue
[src]

impl Clone for AttributeValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AttributeValue
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations