Trait IntoTxtProperties

Source
pub trait IntoTxtProperties {
    // Required method
    fn into_txt_properties(self) -> TxtProperties;
}
Expand description

This trait allows for converting inputs into TxtProperties.

Required Methods§

Implementations on Foreign Types§

Source§

impl IntoTxtProperties for Option<HashMap<String, String>>

Mainly for backward compatibility.

Source§

impl IntoTxtProperties for HashMap<String, String>

Source§

impl<'a, T: 'a> IntoTxtProperties for &'a [T]

Support Vec like [("k1", "v1"), ("k2", "v2")].

Implementors§