Skip to main content

Stringifiable

Trait Stringifiable 

Source
pub trait Stringifiable<'a>
where Self: AsRef<str> + 'a, &'a Self: AsRef<str>,
{ }

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<'a, X> Stringifiable<'a> for X
where X: AsRef<str> + 'a, &'a X: AsRef<str>,