Enumerate/Iterate Over Module Children in Swift?

So I have a very odd question, I am trying to build a Swift wrapper library for Vulkan. Because vulkan is a C library, it is totally possibly and have already started coding in most things manually. I have a question, if anyone has worked with JavaScript before, you know that most modules are imported as a actual JavaScript type and can be iterated over if in array or object form. Does Swift's module system have a way to iterate over all properties from an import module. For example I want to import the CVulkan module and iterate over all of it's public/open properties. Classes, structures, variables, enums, etc... Does anyone know if this is possibly in swift? I am on Ubuntu and using Swift Package Manager to build.