risingwave_connector::source::base

Trait TryFromBTreeMap

source
pub trait TryFromBTreeMap: Sized + UnknownFields {
    // Required method
    fn try_from_btreemap(
        props: BTreeMap<String, String>,
        deny_unknown_fields: bool,
    ) -> Result<Self>;
}

Required Methods§

source

fn try_from_btreemap( props: BTreeMap<String, String>, deny_unknown_fields: bool, ) -> Result<Self>

Used to initialize the source properties from the raw untyped WITH options.

Object Safety§

This trait is not object safe.

Implementors§