pub struct Message {
pub payload: Payload,
pub command: Option<CommandType>,
pub seq_nr: Option<u32>,
pub ret_code: Option<u8>,
}
Expand description
Representation of a message sent to and received from a Tuya device. The Payload is serialized to and deserialized from JSON. The sequence number, if sent in a command, will be included in the response to be able to connect command and response. The return code is only included if the Message is a response from a device.
Fields§
§payload: Payload
§command: Option<CommandType>
§seq_nr: Option<u32>
§ret_code: Option<u8>
Implementations§
Trait Implementations§
impl Eq for Message
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
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