podstru_internal/
lib.rs

1pub trait Builder {
2  type Target;
3
4  fn builder() -> Self::Target
5  where
6    Self: Sized;
7}