pub trait BluetoothCharacteristicPropertiesMethods {
    // Required methods
    fn Broadcast(&self) -> bool;
    fn Read(&self) -> bool;
    fn WriteWithoutResponse(&self) -> bool;
    fn Write(&self) -> bool;
    fn Notify(&self) -> bool;
    fn Indicate(&self) -> bool;
    fn AuthenticatedSignedWrites(&self) -> bool;
    fn ReliableWrite(&self) -> bool;
    fn WritableAuxiliaries(&self) -> bool;
}

Required Methods§

Implementors§