Get the Remote for a Database
(database: &Database)
| 41 | |
| 42 | /// Get the Remote for a Database |
| 43 | pub fn get_for_local_database(database: &Database) -> Result<Option<Ref<Remote>>, ()> { |
| 44 | sync::get_remote_for_local_database(database) |
| 45 | } |
| 46 | |
| 47 | /// Get the Remote for a Binary View |
| 48 | pub fn get_for_binary_view(bv: &BinaryView) -> Result<Option<Ref<Remote>>, ()> { |
nothing calls this directly
no test coverage detected