ops-derive 0.1.1

Derive macros for std::ops
Documentation
  • Coverage
  • 0%
    0 out of 11 items documented0 out of 10 items with examples
  • Size
  • Source code size: 9.71 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 313.9 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 4s Average build duration of successful builds.
  • all releases: 4s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • bretzle

OpsDerive

Derive macros for std::ops

Examples

use ops_derive::*;

#[derive(Debug, PartialEq, AutoAdd)]
pub struct Point {
    x: u32,
    y: u32,
    z: u32,
}

impl Point {
	pub fn new(x: u32, y: u32, z: u32) -> Self {
		Self { x, y, z }
	}
}

fn main() {
	let a = Point::new(1, 2, 3);
	let b = Point::new(4, 5, 6);
	let c = Point::new(5, 7, 9);

	assert_eq!(a + b, c);
}