punting on enums for now

This commit is contained in:
Aiden McClelland
2021-03-29 17:21:50 -06:00
parent df263c2a7d
commit 42b4c74a14

View File

@@ -246,5 +246,10 @@ fn build_model_struct(
}
fn build_model_enum(base: &DeriveInput, ast: &DataEnum, model_name: Option<Ident>) -> TokenStream {
todo!()
todo!(
"use {:?}, {:?} and {:?} to create a model that can become an enum of models",
base,
ast,
model_name
)
}