pub struct ReplyResponse {
pub tag: u16,
pub attributes: HashMap<String, Option<String>>,
}Expand description
Represents a reply to a command, including a tag and multiple attributes.
Fields§
§tag: u16The tag associated with the command.
attributes: HashMap<String, Option<String>>The attributes of the reply.
Trait Implementations§
Source§impl Clone for ReplyResponse
impl Clone for ReplyResponse
Source§fn clone(&self) -> ReplyResponse
fn clone(&self) -> ReplyResponse
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReplyResponse
impl Debug for ReplyResponse
Auto Trait Implementations§
impl Freeze for ReplyResponse
impl RefUnwindSafe for ReplyResponse
impl Send for ReplyResponse
impl Sync for ReplyResponse
impl Unpin for ReplyResponse
impl UnwindSafe for ReplyResponse
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