Trait Connectable

Source
pub trait Connectable {
    // Required method
    fn get_urls(self) -> Vec<String>;
}
Expand description

Can provide multiple URLs

Required Methods§

Source

fn get_urls(self) -> Vec<String>

provide urls

Implementations on Foreign Types§

Source§

impl Connectable for &str

Source§

impl Connectable for String

Source§

impl Connectable for Vec<&str>

Source§

impl Connectable for Vec<String>

Implementors§