conform/
traits.rs

1use std::marker::Sized;
2
3/// The trait implemented by `conform_derive`
4pub trait Conform {
5  fn conform(&mut self) -> &mut Self
6  where
7    Self: Sized;
8}