jmespath / jmespath.rs

Rust implementation of JMESPath, a query language for JSON
MIT License
133 stars 26 forks source link

Problem: Expression sharing #29

Closed yrashk closed 5 years ago

yrashk commented 5 years ago

Sometimes it is necessary be able to give the same expression to two different parties, while avoiding potentially hairy lifetime management issues.

Solution: derive Clone for Expression

yrashk commented 5 years ago

Any chance of getting this into upstream? Thanks! Please let me know if you have any questions or concerns.

mtdowling commented 5 years ago

Thanks!