Get a mutable reference to a remote by name.
(&mut self, name: &str)
| 402 | |
| 403 | /// Get a mutable reference to a remote by name. |
| 404 | pub fn get_mut(&mut self, name: &str) -> Option<&mut RemoteEntry> { |
| 405 | self.remotes.get_mut(name) |
| 406 | } |
| 407 | |
| 408 | /// Check if a remote with the given name exists. |
| 409 | pub fn contains(&self, name: &str) -> bool { |
no outgoing calls