#traits #macro

macro single-trait-impl

A macro for declaring and implementing a trait at the same time

1 unstable release

0.1.0 Mar 13, 2023

#71 in #trait

Download history 4/week @ 2023-12-14 16/week @ 2023-12-21 8/week @ 2024-01-18 1/week @ 2024-02-15 19/week @ 2024-02-22 10/week @ 2024-02-29 35/week @ 2024-03-07 54/week @ 2024-03-14

118 downloads per month

MIT license

4KB

single-trait-impl

Provides a macro for declaring and implementing a trait at the same time. This can be useful when you simply want to add functionality to an existing struct but have no intention to implement it on other structs as well.

In other words, this macro reduces the verbosity of implementing your own trait for a single struct:

#[single_trait_impl]
impl SocketAddrEx for std::net::SocketAddr {
    fn useful_function(&self) {
    }
}

This will expand to the following code:

pub trait SocketAddrEx {
    fn useful_function(&self);
}

impl SocketAddrEx for std::net::SocketAddr {
    fn useful_function(&self) {
    }
}

Dependencies

~1.5MB
~34K SLoC