feat: Initial working prototype
Some checks failed
build / checks-matrix (push) Has been cancelled
build / checks-build (push) Has been cancelled
build / codecov (push) Has been cancelled
docs / docs (push) Has been cancelled

This commit is contained in:
uttarayan21
2025-11-19 01:39:20 +05:30
parent 3222c26bb6
commit a1c36e4fb2
10 changed files with 269 additions and 76 deletions

View File

@@ -112,6 +112,8 @@ impl Property {
};
if let Some(true) = self.nullable {
format!("Option<{}>", out)
} else if self.nullable.is_none() && self._type == Some(Types::Object) {
format!("Option<{}>", out)
} else {
out
}