Closed maddymakesgames closed 2 months ago
Changing LoadError::IO to store an Arc<std::io::Error> allows LoadError to be clone. This would be a nice change for error handling as currently any error type that might store a LoadError cannot be clone itself.
LoadError::IO
Arc<std::io::Error>
LoadError
Changing
LoadError::IO
to store anArc<std::io::Error>
allowsLoadError
to be clone. This would be a nice change for error handling as currently any error type that might store aLoadError
cannot be clone itself.