type(of: ) vs String.init(describing: )
struct Podcast {}
print(type(of: Podcast.self)) // Podcast.Type
print(String.init(describing: Podcast.self)) // Podcast
type(of: ) vs String.init(describing: )
struct Podcast {}
print(type(of: Podcast.self)) // Podcast.Type
print(String.init(describing: Podcast.self)) // Podcast