pub struct MessageReply<D> {
pub reply_service: u8,
pub status: Status,
pub remaining_path_size: Option<u8>,
pub data: D,
}Expand description
message reply
Fields§
§reply_service: u8reply service code
status: Statusgeneral status and extended status
remaining_path_size: Option<u8>only present with routing type errors
data: DImplementations§
Trait Implementations§
Source§impl<D: Debug> Debug for MessageReply<D>
impl<D: Debug> Debug for MessageReply<D>
Source§impl<'de, R> Decode<'de> for MessageReply<R>where
R: Decode<'de>,
impl<'de, R> Decode<'de> for MessageReply<R>where
R: Decode<'de>,
Source§impl<D> MessageReplyInterface for MessageReply<D>
impl<D> MessageReplyInterface for MessageReply<D>
Auto Trait Implementations§
impl<D> Freeze for MessageReply<D>where
D: Freeze,
impl<D> RefUnwindSafe for MessageReply<D>where
D: RefUnwindSafe,
impl<D> Send for MessageReply<D>where
D: Send,
impl<D> Sync for MessageReply<D>where
D: Sync,
impl<D> Unpin for MessageReply<D>where
D: Unpin,
impl<D> UnwindSafe for MessageReply<D>where
D: UnwindSafe,
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