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
Currently, query builder accepts ToString for its arguments. But this trait doesn't have definite semantics and many types implement this. Most of the instances are irrelevant to database query, such as error types (because it implements Display for human display of the error).
I'm not sure why just accepting String or impl Into<String> is not enough. Probably it should be.