conform 0.0.2

Macro to transform struct string fields in place
Documentation
1
2
3
4
5
6
7
8
use std::marker::Sized;

/// The trait implemented by `conform_derive`
pub trait Conform {
  fn conform(&mut self) -> &mut Self
  where
    Self: Sized;
}