Maybe you have downloaded the wrong APK, there are some bad actors providing “pre built YouTube Revanced APKs”. Be sure to only download the Revanced Manager from https://revanced.app/ and the unpatched YT APK (version should match the recommended one in the manager) from a trusted source like apkpure etc.
Equality in rust is value equality per default, that’s what these traits are for. If you want to check pointer equality you’d use the
std::ptr::eq
function to check if two pointers are equal, which is rather rare in practice. You can also implement thePartialEq
trait yourself if you need custom equality checks.