Skip to main content

EdgePropMut

Trait EdgePropMut 

Source
pub trait EdgePropMut<G, T>: IndexMut<Edge<G>, Output = T>
where G: WithEdge,
{ }
Expand description

A edge property that can be read/write using indexing operation.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<P, G, T> EdgePropMut<G, T> for P
where G: WithEdge, P: IndexMut<Edge<G>, Output = T>,