pub type MgResult<G, T> = Result<T, <G as MutableGraph>::MutationError>;
Expand description
Type alias for results produced by a mutable graph.
Aliased Type§
enum MgResult<G, T> {
Ok(T),
Err(<G as MutableGraph>::MutationError),
}
Variants§
Ok(T)
Contains the success value
Err(<G as MutableGraph>::MutationError)
Contains the error value