pub enum ControlReply {
Framed(Message),
Json(JsonReply),
}Expand description
The actual reply format. JSON never receives synthetic IDs or CBOR bytes.
Variants§
Framed(Message)
Original framed response, including unknown fields.
Json(JsonReply)
Original JSON line and its lossless inspection view.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ControlReply
impl RefUnwindSafe for ControlReply
impl Send for ControlReply
impl Sync for ControlReply
impl Unpin for ControlReply
impl UnsafeUnpin for ControlReply
impl UnwindSafe for ControlReply
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