pub trait ReadResponder {
// Required methods
fn respond(self, value: &[u8]);
fn error(self, error: GattError);
}Expand description
Responder that can send data that has been read from a characteristic.
pub trait ReadResponder {
// Required methods
fn respond(self, value: &[u8]);
fn error(self, error: GattError);
}Responder that can send data that has been read from a characteristic.