pub struct DeviceReadResult {
pub device_instance: u32,
pub result: Result<ReadPropertyACK, Error>,
}Expand description
Result of a single-property read from a device within a batch.
Fields§
§device_instance: u32The device instance this result corresponds to.
result: Result<ReadPropertyACK, Error>The read result (Ok = decoded ACK, Err = protocol/timeout error).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DeviceReadResult
impl !RefUnwindSafe for DeviceReadResult
impl Send for DeviceReadResult
impl Sync for DeviceReadResult
impl Unpin for DeviceReadResult
impl UnsafeUnpin for DeviceReadResult
impl !UnwindSafe for DeviceReadResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more