trouble-host

Crates

git

Versions

default

Flavors

Enum AttReq

Source
pub enum AttReq<'d> {
    ReadByGroupType {
        start: u16,
        end: u16,
        group_type: Uuid,
    },
    ReadByType {
        start: u16,
        end: u16,
        attribute_type: Uuid,
    },
    Read {
        handle: u16,
    },
    Write {
        handle: u16,
        data: &'d [u8],
    },
    ExchangeMtu {
        mtu: u16,
    },
    FindByTypeValue {
        start_handle: u16,
        end_handle: u16,
        att_type: u16,
        att_value: &'d [u8],
    },
    FindInformation {
        start_handle: u16,
        end_handle: u16,
    },
    PrepareWrite {
        handle: u16,
        offset: u16,
        value: &'d [u8],
    },
    ExecuteWrite {
        flags: u8,
    },
    ReadMultiple {
        handles: &'d [u8],
    },
    ReadBlob {
        handle: u16,
        offset: u16,
    },
}
Expand description

ATT Request PDU

Variants§

§

ReadByGroupType

Read By Group Type Request

Fields

§start: u16

Start attribute handle

§end: u16

End attribute handle

§group_type: Uuid

Group type

§

ReadByType

Read By Type Request

Fields

§start: u16

Start attribute handle

§end: u16

End attribute handle

§attribute_type: Uuid

Attribute type

§

Read

Read Request

Fields

§handle: u16

Attribute handle

§

Write

Write Request

Fields

§handle: u16

Attribute handle

§data: &'d [u8]

Attribute value

§

ExchangeMtu

Exchange MTU Request

Fields

§mtu: u16

Client MTU

§

FindByTypeValue

Find By Type Value Request

Fields

§start_handle: u16

Start attribute handle

§end_handle: u16

End attribute handle

§att_type: u16

Attribute type

§att_value: &'d [u8]

Attribute value

§

FindInformation

Find Information Request

Fields

§start_handle: u16

Start attribute handle

§end_handle: u16

End attribute handle

§

PrepareWrite

Prepare Write Request

Fields

§handle: u16

Attribute handle

§offset: u16

Attribute offset

§value: &'d [u8]

Attribute value

§

ExecuteWrite

Execute Write Request

Fields

§flags: u8

Flags

§

ReadMultiple

Read Multiple Request

Fields

§handles: &'d [u8]

Attribute handles

§

ReadBlob

Read Blob Request

Fields

§handle: u16

Attribute handle

§offset: u16

Attribute offset

Trait Implementations§

Source§

impl<'d> Debug for AttReq<'d>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'d> Format for AttReq<'d>
where Uuid: Format, &'d [u8]: Format,

Source§

fn format(&self, f: Formatter<'_>)

Writes the defmt representation of self to fmt.

Auto Trait Implementations§

§

impl<'d> Freeze for AttReq<'d>

§

impl<'d> RefUnwindSafe for AttReq<'d>

§

impl<'d> Send for AttReq<'d>

§

impl<'d> Sync for AttReq<'d>

§

impl<'d> Unpin for AttReq<'d>

§

impl<'d> UnwindSafe for AttReq<'d>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.