IntoOperatorUri

Trait IntoOperatorUri 

Source
pub trait IntoOperatorUri {
    // Required method
    fn into_operator_uri(self) -> Result<OperatorUri>;
}
Expand description

Conversion trait that builds OperatorUri from various inputs.

Required Methods§

Source

fn into_operator_uri(self) -> Result<OperatorUri>

Convert the input into an OperatorUri.

Implementations on Foreign Types§

Source§

impl IntoOperatorUri for &str

Source§

impl IntoOperatorUri for &Uri

Source§

impl IntoOperatorUri for String

Source§

impl IntoOperatorUri for Uri

Source§

impl<O, K, V> IntoOperatorUri for (&str, O)
where O: IntoIterator<Item = (K, V)>, K: Into<String>, V: Into<String>,

Source§

impl<O, K, V> IntoOperatorUri for (&Uri, O)
where O: IntoIterator<Item = (K, V)>, K: Into<String>, V: Into<String>,

Source§

impl<O, K, V> IntoOperatorUri for (String, O)
where O: IntoIterator<Item = (K, V)>, K: Into<String>, V: Into<String>,

Source§

impl<O, K, V> IntoOperatorUri for (Uri, O)
where O: IntoIterator<Item = (K, V)>, K: Into<String>, V: Into<String>,

Implementors§