IntoName

Trait IntoName 

Source
pub trait IntoName: Send + 'static {
    // Required method
    fn into_name(&self) -> impl Name;
}

Required Methods§

Source

fn into_name(&self) -> impl Name

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl IntoName for CString

Source§

fn into_name(&self) -> impl Name

Source§

impl IntoName for String

Source§

fn into_name(&self) -> impl Name

Implementors§