Hello, there are several assert!s in font_family::FontFamily, eg:
Unfortunately, these are crashing our app. Can this crate provide fallible versions of these which return a Result instead so that we can recover from this error in a non-panicking way?
Hello, there are several
assert!s infont_family::FontFamily, eg:dwrote-rs/src/font_family.rs
Line 75 in 771b2e1
Unfortunately, these are crashing our app. Can this crate provide fallible versions of these which return a
Resultinstead so that we can recover from this error in a non-panicking way?