pub trait CdcSourceTypeTrait:
Send
+ Sync
+ Clone
+ Debug
+ 'static {
const CDC_CONNECTOR_NAME: &'static str;
// Required method
fn source_type() -> CdcSourceType;
}
Required Associated Constants§
const CDC_CONNECTOR_NAME: &'static str
Required Methods§
fn source_type() -> CdcSourceType
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.