pub struct Message { /* private fields */ }
Expand description
A complete Hostlink command.
Implementations§
source§impl Message
impl Message
sourcepub const fn new(node: NodeId, kind: MessageKind, params: MessageParams) -> Self
pub const fn new(node: NodeId, kind: MessageKind, params: MessageParams) -> Self
Creates a new command from the specified node ID and arguments.
sourcepub const fn new_with_empty_params(node: NodeId, kind: MessageKind) -> Self
pub const fn new_with_empty_params(node: NodeId, kind: MessageKind) -> Self
Creates a new command with no arguments from the specified node ID.
pub const fn kind(&self) -> MessageKind
pub const fn params(&self) -> &MessageParams
pub fn as_device_error(self) -> Result<DeviceError, ProtocolError>
pub fn check_device_error(&self) -> Option<DeviceError>
sourcepub fn serialize(self) -> Result<Box<str>, ProtocolError>
pub fn serialize(self) -> Result<Box<str>, ProtocolError>
Serializes the command into a string that can be sent to a PLC.
pub fn set_node_id(&mut self, node: NodeId)
pub fn parse(cmd: &str) -> Result<Self, ProtocolError>
Trait Implementations§
source§impl Ord for Message
impl Ord for Message
source§impl PartialEq<Message> for EasyCommand
impl PartialEq<Message> for EasyCommand
source§impl PartialEq for Message
impl PartialEq for Message
source§impl PartialOrd for Message
impl PartialOrd for Message
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl 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