Restricting a Generic Argument to a Schema.Struct with Specific Properties

Is it possible to restrict a generic argument to a function to be a Schema.Struct with some specific properties and others being inferred? I know how to do it with Schema<A, I, R> but can’t figure it out for Struct (would like to be able to access .fields within the function, as well as call Schema.omit("knownProp")). Thanks!
Was this page helpful?