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
warning: call to `.deref()` on a reference in this situation does nothing
--> /home/jayvdb/rust/butane/butane_core/src/db/sqlite.rs:490:52
|
490 | returnErr(Error::IncompatibleCustomT(v.deref().clone(),BACKEND_NAME))
| ^^^^^^^^ help: remove this redundant call
|
= note: the type `SqlTypeCustom` does not implement `Deref`, so calling `deref` on `&SqlTypeCustom` copies the reference, which does not do anything and can be removed
= note: `#[warn(noop_method_call)]` on by default
Not sure if we might want to implement Deref. Probably not.
The text was updated successfully, but these errors were encountered:
Not sure if we might want to implement
Deref
. Probably not.The text was updated successfully, but these errors were encountered: