pub struct ResponseMessage {
pub request_id: String,
pub response: Result<ChannelResponse, Error>,
pub timestamp: Instant,
}Expand description
Response message for channel sessions (WebSocket-specific)
Fields§
§request_id: String§response: Result<ChannelResponse, Error>§timestamp: InstantTrait Implementations§
Auto Trait Implementations§
impl Freeze for ResponseMessage
impl RefUnwindSafe for ResponseMessage
impl Send for ResponseMessage
impl Sync for ResponseMessage
impl Unpin for ResponseMessage
impl UnwindSafe for ResponseMessage
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