[][src]Struct rubble::att::AttHandle

pub struct AttHandle(_);

A 16-bit handle uniquely identifying an attribute on an ATT server.

The 0x0000 handle (NULL) is invalid and must not be used.

Methods

impl AttHandle[src]

pub const NULL: Self[src]

The 0x0000 handle is not used for actual attributes, but as a special placeholder when no attribute handle is valid (eg. in error responses).

pub fn as_u16(&self) -> u16[src]

Returns the raw 16-bit integer representing this handle.

pub fn from_raw(raw: u16) -> Self[src]

Create an attribute handle from a raw u16

Trait Implementations

impl<'_> FromBytes<'_> for AttHandle[src]

impl Copy for AttHandle[src]

impl Debug for AttHandle[src]

impl PartialEq<AttHandle> for AttHandle[src]

impl Eq for AttHandle[src]

impl Clone for AttHandle[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for AttHandle

impl Sync for AttHandle

Blanket Implementations

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> From for T[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]