Struct bluenrg::gatt::WriteRequest[][src]

pub struct WriteRequest<'a> {
    pub conn_handle: ConnectionHandle,
    pub attribute_handle: CharacteristicHandle,
    pub offset: usize,
    pub value: &'a [u8],
}

Parameters for the Prepare Write Request command.

Fields

Connection handle for which the command is given.

Handle of the attribute whose value has to be written

The offset at which value has to be written

Value of the attribute to be written

Auto Trait Implementations

impl<'a> Send for WriteRequest<'a>

impl<'a> Sync for WriteRequest<'a>