Skip to main content

KeyPath

Trait KeyPath 

Source
pub trait KeyPath<Root, Value, MutRoot, MutValue>: Readable<Root, Value> + Writable<MutRoot, MutValue> { }
Expand description

A keypath that supports both read and write navigation.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T, Root, Value, MutRoot, MutValue> KeyPath<Root, Value, MutRoot, MutValue> for T
where T: Readable<Root, Value> + Writable<MutRoot, MutValue>,