saphyr-rs / saphyr

A set of crates dedicated to parsing YAML.
58 stars 5 forks source link

Change LoadError::IO to store an Arc #11

Closed maddymakesgames closed 2 months ago

maddymakesgames commented 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.