You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some public functions like apply_custom return a Result<_, Errored>. However, it seems like there is no nice way to actually report such an error -- the fields a private, and the debug impl produces unreadable results.
Some public functions like
apply_custom
return aResult<_, Errored>
. However, it seems like there is no nice way to actually report such an error -- the fields a private, and the debug impl produces unreadable results.Normal error reporting happens here:
ui_test/src/lib.rs
Lines 340 to 352 in 51c1edc
But this is not accessible to outside code.
Given that
Errored
is a public type, it'd be nice if there was also a publicly accessible way of reporting those errors. :)The text was updated successfully, but these errors were encountered: