Struct bluenrg::gatt::LongCharacteristicValue[][src]

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

Parameters for the Write Long Characteristic Value command.

Fields

Connection handle for which the command is given.

Handle of the characteristic to be written.

Offset at which the attribute has to be written.

Value to be written. The maximum length is 248 bytes.

Auto Trait Implementations

impl<'a> Send for LongCharacteristicValue<'a>

impl<'a> Sync for LongCharacteristicValue<'a>