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.

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.

Implementors§