Enum bluez_async::WriteType [−][src]
pub enum WriteType {
WithResponse,
WithoutResponse,
Reliable,
}
Expand description
The type of write operation to use.
Variants
A write operation where the device is expected to respond with a confirmation or error. Also
known as a request. This corresponds to
CharacteristicFlags
::WRITE
.
A write-without-response, also known as a command. This corresponds to
CharacteristicFlags
::WRITE_WITHOUT_RESPONSE
.
A reliable write. This corresponds to
CharacteristicFlags
::RELIABLE_WRITE
.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for WriteType
impl UnwindSafe for WriteType
Blanket Implementations
Mutably borrows from an owned value. Read more