pub struct TraceTransport;Expand description
Stub transport layer.
The accept_loop method is explicitly unimplemented — it is
intentionally left for a future session, as documented in the RFC 006
implementation notes and the session handoff document.
Implementations§
Source§impl TraceTransport
impl TraceTransport
Sourcepub async fn accept_loop(
_config: TraceTransportConfig,
_emitter: TraceEmitter,
) -> !
pub async fn accept_loop( _config: TraceTransportConfig, _emitter: TraceEmitter, ) -> !
Start accepting out-of-process subscribers and forwarding events.
§Panics
Always panics with “not yet implemented — RFC 006 socket I/O transport is a stub, deferred to a future release.”
Auto Trait Implementations§
impl Freeze for TraceTransport
impl RefUnwindSafe for TraceTransport
impl Send for TraceTransport
impl Sync for TraceTransport
impl Unpin for TraceTransport
impl UnsafeUnpin for TraceTransport
impl UnwindSafe for TraceTransport
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