Skip to content

Instantly share code, notes, and snippets.

View hbjydev's full-sized avatar
🇺🇦
Слава Україні!

Hayden hbjydev

🇺🇦
Слава Україні!
View GitHub Profile
// Type you want to build
struct MyThing {}
trait MyBuilder {
type OutputType;
fn build(&self) -> OutputType;
}
struct MyThingBuilder {}