Struct bluenrg::gatt::CharacteristicValue[][src]

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

Parameters for the Write Characteristic Value command.

Fields

Connection handle for which the command is given.

Handle of the characteristic to be written.

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

Auto Trait Implementations

impl<'a> Send for CharacteristicValue<'a>

impl<'a> Sync for CharacteristicValue<'a>