Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 357 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 357 Bytes

extension-trait

A macro to declare extension traits - a trait that is created to add methods to an external type.

Example

#[macro_use]
extern crate extension_trait;

#[extension_trait]
pub impl DoubleExt for str {
   fn double(&self) -> String {
       self.repeat(2)
   }
}

fn main() {
    assert_eq!("Hello".double(), "HelloHello");
}