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
It seems like the validated and is_fully_validated flags doesn't need to be part of a logical type check? Like two variants can be equal by value even if one is fully validated and one is not
I would expect the following to pass for all variants and metadata
let variant1 = Variant::new(metadata, buffers);let variant2 = Variant::new(metadata, buffers).with_full_validation();assert_eq!(variant1, variant2)