MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / update_trunk_path

Method update_trunk_path

atomic-core/src/crdt/apply/traits.rs:539–546  ·  view source on GitHub ↗
(&mut self, id: TrunkId, new_path: &str)

Source from the content-addressed store, hash-verified

537 }
538
539 fn update_trunk_path(&mut self, id: TrunkId, new_path: &str) -> Result<(), Self::Error> {
540 if let Some(trunk) = self.trunks.get_mut(&id) {
541 self.path_index.remove(trunk.path());
542 trunk.set_path(new_path.to_string());
543 self.path_index.insert(new_path.to_string(), id);
544 }
545 Ok(())
546 }
547
548 fn get_trunk_by_path(&self, path: &str) -> Result<Option<TrunkId>, Self::Error> {
549 Ok(self.path_index.get(path).copied())

Callers 1

test_update_trunk_pathFunction · 0.45

Calls 5

get_mutMethod · 0.80
set_pathMethod · 0.80
removeMethod · 0.65
pathMethod · 0.45
insertMethod · 0.45

Tested by 1

test_update_trunk_pathFunction · 0.36