pub trait TryGraphMut: TryGraph {
// Required method
fn try_insert(
&mut self,
triple: Triple<Self::Resource>,
) -> Result<(), Self::Error>;
}Expand description
Fallible mutable graph.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl<D> TryGraphMut for Dwhere
D: GraphMut,
Any non-fallible mutable graph can be used as fallible, with the
Infallible error type.