UManaged
UManaged[A] is a type alias for ZManaged[Any, Nothing, A], which represents an unexceptional managed resource that doesn't require any specific environment, and cannot fail, but can succeed with an A.
The UMManaged type alias is defined as follows:
type UManaged[+A] = ZManaged[Any, Nothing, A]