Struct bluenrg::gatt::WriteResponseParameters[][src]

pub struct WriteResponseParameters<'a> {
    pub conn_handle: ConnectionHandle,
    pub attribute_handle: CharacteristicHandle,
    pub status: Result<(), Status<Status>>,
    pub value: &'a [u8],
}

Parameters for the Write Response command.

Fields

Connection handle for which the command is given

Handle of the attribute that was passed in the Write Permit Request event.

Is the command rejected, and if so, why?

Value as passed in the Write Permit Request event.

Auto Trait Implementations

impl<'a> Send for WriteResponseParameters<'a>

impl<'a> Sync for WriteResponseParameters<'a>