Skip to main content

ToFqdn

Trait ToFqdn 

Source
pub trait ToFqdn {
    // Required method
    fn to_fqdn(&self) -> Box<str>;
}

Required Methods§

Source

fn to_fqdn(&self) -> Box<str>

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<T: AsRef<str>> ToFqdn for T