(src: &'a str, label: &'a str, dst: &'a str)
| 250 | } |
| 251 | |
| 252 | fn e<'a>(src: &'a str, label: &'a str, dst: &'a str) -> EdgeRef<'a> { |
| 253 | EdgeRef::new(T, COLL, src, label, dst) |
| 254 | } |
| 255 | |
| 256 | fn put(store: &EdgeStore, clock: &OrdinalClock, src: &str, label: &str, dst: &str, p: &[u8]) { |
| 257 | let ord = clock.next_ordinal(); |
no outgoing calls