Macro delegate_newtype_of_foster_string

Source
macro_rules! delegate_newtype_of_foster_string {
    ( $type:ty ) => { ... };
}
Expand description

Delegates traits to a FosterString newtype.

Example:

#[derive(Clone, Debug)]
pub struct MyType(FosterString);

delegate_newtype_of_foster_string!(MyType);