#clucompany #impl-block #macro #code-transformation #no-std

no-std copy_impl

Macro for effortlessly duplicating impl block code across various types in Rust

2 releases

0.3.3 Mar 30, 2024
0.3.2 Mar 30, 2024
0.3.1 Mar 30, 2024
0.3.0 Mar 30, 2024

#625 in Development tools

Download history 150/week @ 2024-03-24 115/week @ 2024-03-31 4/week @ 2024-04-07

269 downloads per month

MIT/Apache

11KB
141 lines

[copy_impl]

(Macro for effortlessly duplicating impl block code across various types in Rust.)

Usage:

Add this to your Cargo.toml:

[dependencies]
copy_impl = "0.3.3"

and this to your source code:

use copy_impl::copy_impl;

Example:

use std::{error::Error, fmt::Write};
use copy_impl::copy_impl;

struct CustomNum<T>(T);
struct UncheckedCustomNum<T>(T);

copy_impl! {
	impl (CustomNum<i8>),
	impl (CustomNum<i16>),
	impl (CustomNum<i32>),
	impl (UncheckedCustomNum<i8>),
	impl (UncheckedCustomNum<i16>) {
		pub fn write_to(&self, mut w: impl Write) -> Result<(), std::fmt::Error> {
			write!(w, "{}", self.0)
		}
	}
}

fn main() -> Result<(), Box<dyn Error>> {
	let mut tbuff = String::new();
	CustomNum(1i8).write_to(&mut tbuff)?;
	CustomNum(2i16).write_to(&mut tbuff)?;
	CustomNum(3i32).write_to(&mut tbuff)?;
	
	UncheckedCustomNum(4i8).write_to(&mut tbuff)?;
	UncheckedCustomNum(5i16).write_to(&mut tbuff)?;
	// UncheckedCustomNum(6i32).write_to(&mut tbuff)?;
	/*
		no method named `write_to` found for struct `UncheckedCustomNum<i32>` in the current scope
		the method was found for
		- `UncheckedCustomNum<i8>`
		- `UncheckedCustomNum<i16>`
	*/
	
	assert_eq!(tbuff, "12345");
	
	Ok(())
}
See all

License:

This project has a dual license according to (LICENSE-MIT) and (LICENSE-APACHE-2-0).

uproject  Copyright (c) 2021-2024 #UlinProject (Denis Kotlyarov).



Apache License:

apache2  Licensed under the Apache License, Version 2.0.



MIT License:

mit  Licensed under the MIT License.



No runtime deps