pub struct TunnelChunk {
pub frame: Frame,
}Expand description
A chunk received on a tunnel channel.
This is delivered to tunnel receivers when DATA frames arrive on the channel. For streaming RPCs, this is also used to deliver typed responses that need to be deserialized by the client.
Fields§
§frame: FrameThe received frame.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for TunnelChunk
impl RefUnwindSafe for TunnelChunk
impl Send for TunnelChunk
impl Sync for TunnelChunk
impl Unpin for TunnelChunk
impl UnwindSafe for TunnelChunk
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