pub trait Find<T: Table, Index>: FoundAt<T, Index> {
type Nullability: Nullability;
}Expand description
Proof that table T appears somewhere in a scope list, found at
compile-time-inferred position Index. Index is never spelled out by
callers — it’s inferred, exactly like frunk’s Plucker — and it’s what
keeps the two impls below structurally distinct rather than overlapping.
Required Associated Types§
Sourcetype Nullability: Nullability
type Nullability: Nullability
The nullability T has in this scope (derived from how it was
joined, not asserted manually).
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".