pub trait RemoteMessageSink:
Send
+ Sync
+ 'static {
// Required method
fn deliver(
&self,
target_path: &str,
manifest: &str,
payload: &[u8],
sender_path: Option<&str>,
);
}Expand description
Sink for inbound RemoteTell frames. The pycore binding implements
this — typically by decoding the payload via the codec registry and
invoking tell on the matching local actor.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".