pub trait KpReadable<R, V, Root, Value> { // Required method fn get(&self, root: Root) -> Option<Value>; }
Read-only keypath surface: navigate from Root to Value (logical value type V).
Root
Value
V