Yes, if you just need to print properties of a struct or class, and the properties are simple types like String and Int, you can use reflect and MirrorType.
func print_properties(mirror: MirrorType) {
for i in 0..
If you have nested structs, enums, you need to do a bit more work.