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 HashMap<String, String>

source§

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

Mainly for backward compatibility.

source§

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

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

Implementors§