Trait relay_protocol::condition::IntoStrings

source ·
pub trait IntoStrings {
    // Required method
    fn into_strings(self) -> Vec<String>;
}
Expand description

A type that can be converted to a list of strings.

Required Methods§

source

fn into_strings(self) -> Vec<String>

Creates a list of strings from this type.

Implementations on Foreign Types§

source§

impl IntoStrings for &str

source§

impl IntoStrings for &[&str]

source§

impl IntoStrings for &[String]

source§

impl IntoStrings for Cow<'_, str>

source§

impl IntoStrings for String

source§

impl IntoStrings for Vec<&str>

source§

impl IntoStrings for Vec<String>

Implementors§