pub trait DecodeContext {
// Required method
fn remote_proxy(&self) -> Option<Arc<dyn RemoteProxy + Send + Sync>>;
}Available on crate feature
ipc only.Expand description
Context for decoding messages.
Required Methods§
Sourcefn remote_proxy(&self) -> Option<Arc<dyn RemoteProxy + Send + Sync>>
fn remote_proxy(&self) -> Option<Arc<dyn RemoteProxy + Send + Sync>>
Returns the RemoteProxy associated with this context, if any.