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
There are few Enum with a variant String(String). So when user need it it should call like XXX::String("yyy".to_string()). Supporting &str directly will be a bonus, as:
XXX::String("yyy")
OR "yyy".into()
The text was updated successfully, but these errors were encountered:
There are few Enum with a variant
String(String)
. So when user need it it should call likeXXX::String("yyy".to_string())
. Supporting&str
directly will be a bonus, as:XXX::String("yyy")
The text was updated successfully, but these errors were encountered: