projectfluent / fluent-rs

Rust implementation of Project Fluent
https://projectfluent.org
Apache License 2.0
1.04k stars 95 forks source link

Bundled FluentMessage and FluentArgs type #253

Open clarfonthey opened 2 years ago

clarfonthey commented 2 years ago

Essentially, I want a pair of these that has been pre-validated, but not actually formatted into a string. This should just involve verifying the type and existence of arguments without actually formatting them inside the string.

Right now, the only way to actually "verify" this is to format the string and toss out the result, which is a pretty bad API IMHO.

gregtatum commented 1 year ago

Seems useful to me.