(&'a self, name: &str)
| 53 | } |
| 54 | |
| 55 | pub fn get(&'a self, name: &str) -> Option<&'a (GlobalId, Vec<String>, SqlRelationType)> { |
| 56 | self.objects.get(name) |
| 57 | } |
| 58 | |
| 59 | /// Looks up the name of the object referred to as `id`. |
| 60 | pub fn get_source_name(&'a self, id: &GlobalId) -> Option<&'a String> { |
no outgoing calls