pub enum InboundFrameType {
Notify {
method: Range<usize>,
},
Request {
method: Range<usize>,
req_id: ReqId,
},
Response {
req_id: ReqId,
req_id_hash: u64,
is_error: bool,
},
}
Expand description
Inbound frame type parsed by codec.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InboundFrameType
impl RefUnwindSafe for InboundFrameType
impl Send for InboundFrameType
impl Sync for InboundFrameType
impl Unpin for InboundFrameType
impl UnwindSafe for InboundFrameType
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