quimp!() { /* proc-macro */ }Expand description
Quick Implementations:
- the trait has to have 1 required method
- ..which is named like tie trait (but snake-case)
ยงUsage
quimp!{StructName
fn clone(&self) -> Self {Self::new(self.0)};
fn default() -> Self {Self::new(100)};
}