1use crate::emit_traits;
2use newer_type::target;
3
4emit_traits! {
5    #[implement_of(newer_type_std::string::ToString)]
6    #[slot(u8)]
7    #[target(alternative = ::std::string::ToString)]
8    pub trait ToString {
9        fn to_string(&self) -> ::std::string::String;
10    }
11}