Trait GraphRegistry

Source
pub trait GraphRegistry: Send + Sync {
    // Required methods
    fn get(&self, name: &str) -> Option<&Graph>;
    fn get_mut(&mut self, name: &str) -> Option<&mut Graph>;
}

Required Methods§

Source

fn get(&self, name: &str) -> Option<&Graph>

Source

fn get_mut(&mut self, name: &str) -> Option<&mut Graph>

Implementors§