Skip to main content

Connectable

Trait Connectable 

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

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Connectable for &[(&str, u16)]

Source§

impl Connectable for &str

Source§

impl Connectable for (&str, u16)

Source§

impl Connectable for String

Source§

impl Connectable for Vec<&str>

Source§

impl Connectable for Vec<String>

Implementors§