pub trait RemoteSinkTrait:
Send
+ Sync
+ 'static {
const SINK_NAME: &'static str;
// Provided method
fn default_sink_decouple() -> bool { ... }
}
Required Associated Constants§
Provided Methods§
fn default_sink_decouple() -> bool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.