When I implemented this https://github.com/jaemk/migrant_lib/pull/10 pull request I wasn't aware that there's a type for that use case in the standard library.
This replaces Statements with Cow<'static, str> which should be easier to understand without having to see the implementation o Statements.
When I implemented this https://github.com/jaemk/migrant_lib/pull/10 pull request I wasn't aware that there's a type for that use case in the standard library. This replaces
Statements
withCow<'static, str>
which should be easier to understand without having to see the implementation oStatements
.