linebender / parley

Rich text layout library
Apache License 2.0
228 stars 28 forks source link

Use `FromStr` rather than `fn parse` #98

Open waywardmonkeys opened 3 months ago

waywardmonkeys commented 3 months ago

In fontique there are some methods parse which could instead use FromStr and be able to use the str::parse function as detailed here: https://doc.rust-lang.org/std/primitive.str.html#method.parse

These methods are:

This was suggested by @DJMcNab in #97.