src/lib.rs:328:5: replace parse_storage_rp -> io::Result<bool> with Ok(true)
src/lib.rs:328:5: replace parse_storage_rp -> io::Result<bool> with Ok(false)
src/lib.rs:334:9: delete match arm "STORED\r\n" in parse_storage_rp
src/lib.rs:335:9: delete match arm "NOT_STORED\r\n" | "EXISTS\r\n" | "NOT_FOUND\r\n" in parse_storage_rp
src/lib.rs:343:5: replace parse_retrieval_rp -> io::Result<Vec<Item>> with Ok(vec![])
src/lib.rs:367:13: replace == with != in parse_retrieval_rp
src/lib.rs:375:5: replace parse_version_rp -> io::Result<String> with Ok(String::new())
src/lib.rs:375:5: replace parse_version_rp -> io::Result<String> with Ok("xyzzy".into())
src/lib.rs:378:22: replace - with + in parse_version_rp
src/lib.rs:378:22: replace - with / in parse_version_rp
src/lib.rs:388:5: replace parse_ok_rp -> io::Result<()> with Ok(())
src/lib.rs:393:13: replace == with != in parse_ok_rp
src/lib.rs:404:5: replace parse_delete_rp -> io::Result<bool> with Ok(true)
src/lib.rs:404:5: replace parse_delete_rp -> io::Result<bool> with Ok(false)
src/lib.rs:410:9: delete match arm "DELETED\r\n" in parse_delete_rp
src/lib.rs:411:9: delete match arm "NOT_FOUND\r\n" in parse_delete_rp
src/lib.rs:417:5: replace parse_auth_rp -> io::Result<()> with Ok(())
src/lib.rs:420:9: delete match arm "STORED\r\n" in parse_auth_rp
src/lib.rs:429:5: replace parse_incr_decr_rp -> io::Result<Option<u64>> with Ok(None)
src/lib.rs:429:5: replace parse_incr_decr_rp -> io::Result<Option<u64>> with Ok(Some(0))
src/lib.rs:429:5: replace parse_incr_decr_rp -> io::Result<Option<u64>> with Ok(Some(1))
src/lib.rs:434:13: replace == with != in parse_incr_decr_rp
src/lib.rs:447:5: replace parse_touch_rp -> io::Result<bool> with Ok(true)
src/lib.rs:447:5: replace parse_touch_rp -> io::Result<bool> with Ok(false)
src/lib.rs:452:13: replace == with != in parse_touch_rp
src/lib.rs:454:20: replace == with != in parse_touch_rp
src/lib.rs:464:5: replace parse_stats_rp -> io::Result<HashMap<String, String>> with Ok(HashMap::new())
src/lib.rs:464:5: replace parse_stats_rp -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([(String::new(), String::new())]))
src/lib.rs:464:5: replace parse_stats_rp -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([(String::new(), "xyzzy".into())]))
src/lib.rs:464:5: replace parse_stats_rp -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([("xyzzy".into(), String::new())]))
src/lib.rs:464:5: replace parse_stats_rp -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([("xyzzy".into(), "xyzzy".into())]))
src/lib.rs:475:24: replace == with != in parse_stats_rp
src/lib.rs:487:5: replace parse_lru_crawler_metadump_rp -> io::Result<Vec<String>> with Ok(vec![])
src/lib.rs:487:5: replace parse_lru_crawler_metadump_rp -> io::Result<Vec<String>> with Ok(vec![String::new()])
src/lib.rs:487:5: replace parse_lru_crawler_metadump_rp -> io::Result<Vec<String>> with Ok(vec!["xyzzy".into()])
src/lib.rs:495:13: replace == with != in parse_lru_crawler_metadump_rp
src/lib.rs:505:5: replace parse_lru_crawler_mgdump_rp -> io::Result<Vec<String>> with Ok(vec![])
src/lib.rs:505:5: replace parse_lru_crawler_mgdump_rp -> io::Result<Vec<String>> with Ok(vec![String::new()])
src/lib.rs:505:5: replace parse_lru_crawler_mgdump_rp -> io::Result<Vec<String>> with Ok(vec!["xyzzy".into()])
src/lib.rs:515:13: replace == with != in parse_lru_crawler_mgdump_rp
src/lib.rs:523:5: replace parse_mn_rp -> io::Result<()> with Ok(())
src/lib.rs:525:13: replace == with != in parse_mn_rp
src/lib.rs:535:5: replace parse_me_rp -> io::Result<Option<String>> with Ok(None)
src/lib.rs:535:5: replace parse_me_rp -> io::Result<Option<String>> with Ok(Some(String::new()))
src/lib.rs:535:5: replace parse_me_rp -> io::Result<Option<String>> with Ok(Some("xyzzy".into()))
src/lib.rs:537:13: replace == with != in parse_me_rp
src/lib.rs:540:27: replace - with + in parse_me_rp
src/lib.rs:540:27: replace - with / in parse_me_rp
src/lib.rs:632:64: replace || with && in parse_ms_rp
src/lib.rs:632:38: replace || with && in parse_ms_rp
src/lib.rs:667:38: replace || with && in parse_md_rp
src/lib.rs:706:64: replace || with && in parse_ma_rp
src/lib.rs:706:38: replace || with && in parse_ma_rp
src/lib.rs:750:5: replace build_storage_cmd -> Vec<u8> with vec![]
src/lib.rs:750:5: replace build_storage_cmd -> Vec<u8> with vec![0]
src/lib.rs:750:5: replace build_storage_cmd -> Vec<u8> with vec![1]
src/lib.rs:768:5: replace build_retrieval_cmd -> Vec<u8> with vec![]
src/lib.rs:768:5: replace build_retrieval_cmd -> Vec<u8> with vec![0]
src/lib.rs:768:5: replace build_retrieval_cmd -> Vec<u8> with vec![1]
src/lib.rs:781:5: replace build_version_cmd -> &'static[u8] with Vec::leak(Vec::new())
src/lib.rs:781:5: replace build_version_cmd -> &'static[u8] with Vec::leak(vec![0])
src/lib.rs:781:5: replace build_version_cmd -> &'static[u8] with Vec::leak(vec![1])
src/lib.rs:785:5: replace build_quit_cmd -> &'static[u8] with Vec::leak(Vec::new())
src/lib.rs:785:5: replace build_quit_cmd -> &'static[u8] with Vec::leak(vec![0])
src/lib.rs:785:5: replace build_quit_cmd -> &'static[u8] with Vec::leak(vec![1])
src/lib.rs:789:5: replace build_shutdown_cmd -> &'static[u8] with Vec::leak(Vec::new())
src/lib.rs:789:5: replace build_shutdown_cmd -> &'static[u8] with Vec::leak(vec![0])
src/lib.rs:789:5: replace build_shutdown_cmd -> &'static[u8] with Vec::leak(vec![1])
src/lib.rs:797:5: replace build_cache_memlimit_cmd -> Vec<u8> with vec![]
src/lib.rs:797:5: replace build_cache_memlimit_cmd -> Vec<u8> with vec![0]
src/lib.rs:797:5: replace build_cache_memlimit_cmd -> Vec<u8> with vec![1]
src/lib.rs:808:5: replace build_flush_all_cmd -> Vec<u8> with vec![]
src/lib.rs:808:5: replace build_flush_all_cmd -> Vec<u8> with vec![0]
src/lib.rs:808:5: replace build_flush_all_cmd -> Vec<u8> with vec![1]
src/lib.rs:820:5: replace build_delete_cmd -> Vec<u8> with vec![]
src/lib.rs:820:5: replace build_delete_cmd -> Vec<u8> with vec![0]
src/lib.rs:820:5: replace build_delete_cmd -> Vec<u8> with vec![1]
src/lib.rs:830:5: replace build_auth_cmd -> Vec<u8> with vec![]
src/lib.rs:830:5: replace build_auth_cmd -> Vec<u8> with vec![0]
src/lib.rs:830:5: replace build_auth_cmd -> Vec<u8> with vec![1]
src/lib.rs:845:5: replace build_incr_decr_cmd -> Vec<u8> with vec![]
src/lib.rs:845:5: replace build_incr_decr_cmd -> Vec<u8> with vec![0]
src/lib.rs:845:5: replace build_incr_decr_cmd -> Vec<u8> with vec![1]
src/lib.rs:858:5: replace build_touch_cmd -> Vec<u8> with vec![]
src/lib.rs:858:5: replace build_touch_cmd -> Vec<u8> with vec![0]
src/lib.rs:858:5: replace build_touch_cmd -> Vec<u8> with vec![1]
src/lib.rs:870:5: replace build_stats_cmd -> &'static[u8] with Vec::leak(Vec::new())
src/lib.rs:870:5: replace build_stats_cmd -> &'static[u8] with Vec::leak(vec![0])
src/lib.rs:870:5: replace build_stats_cmd -> &'static[u8] with Vec::leak(vec![1])
src/lib.rs:883:5: replace build_slabs_automove_cmd -> &'static[u8] with Vec::leak(Vec::new())
src/lib.rs:883:5: replace build_slabs_automove_cmd -> &'static[u8] with Vec::leak(vec![0])
src/lib.rs:883:5: replace build_slabs_automove_cmd -> &'static[u8] with Vec::leak(vec![1])
src/lib.rs:891:5: replace build_lru_crawler_cmd -> &'static[u8] with Vec::leak(Vec::new())
src/lib.rs:891:5: replace build_lru_crawler_cmd -> &'static[u8] with Vec::leak(vec![0])
src/lib.rs:891:5: replace build_lru_crawler_cmd -> &'static[u8] with Vec::leak(vec![1])
src/lib.rs:898:5: replace build_lru_clawler_sleep_cmd -> Vec<u8> with vec![]
src/lib.rs:898:5: replace build_lru_clawler_sleep_cmd -> Vec<u8> with vec![0]
src/lib.rs:898:5: replace build_lru_clawler_sleep_cmd -> Vec<u8> with vec![1]
src/lib.rs:904:5: replace build_lru_crawler_tocrawl_cmd -> Vec<u8> with vec![]
src/lib.rs:904:5: replace build_lru_crawler_tocrawl_cmd -> Vec<u8> with vec![0]
src/lib.rs:904:5: replace build_lru_crawler_tocrawl_cmd -> Vec<u8> with vec![1]
src/lib.rs:910:5: replace build_lru_clawler_crawl_cmd -> Vec<u8> with vec![]
src/lib.rs:910:5: replace build_lru_clawler_crawl_cmd -> Vec<u8> with vec![0]
src/lib.rs:910:5: replace build_lru_clawler_crawl_cmd -> Vec<u8> with vec![1]
src/lib.rs:913:22: replace == with != in build_lru_clawler_crawl_cmd
src/lib.rs:926:5: replace build_slabs_reassign_cmd -> Vec<u8> with vec![]
src/lib.rs:926:5: replace build_slabs_reassign_cmd -> Vec<u8> with vec![0]
src/lib.rs:926:5: replace build_slabs_reassign_cmd -> Vec<u8> with vec![1]
src/lib.rs:932:5: replace build_lru_clawler_metadump_cmd -> Vec<u8> with vec![]
src/lib.rs:932:5: replace build_lru_clawler_metadump_cmd -> Vec<u8> with vec![0]
src/lib.rs:932:5: replace build_lru_clawler_metadump_cmd -> Vec<u8> with vec![1]
src/lib.rs:935:22: replace == with != in build_lru_clawler_metadump_cmd
src/lib.rs:949:5: replace build_lru_clawler_mgdump_cmd -> Vec<u8> with vec![]
src/lib.rs:949:5: replace build_lru_clawler_mgdump_cmd -> Vec<u8> with vec![0]
src/lib.rs:949:5: replace build_lru_clawler_mgdump_cmd -> Vec<u8> with vec![1]
src/lib.rs:952:22: replace == with != in build_lru_clawler_mgdump_cmd
src/lib.rs:966:5: replace build_mn_cmd -> &'static[u8] with Vec::leak(Vec::new())
src/lib.rs:966:5: replace build_mn_cmd -> &'static[u8] with Vec::leak(vec![0])
src/lib.rs:966:5: replace build_mn_cmd -> &'static[u8] with Vec::leak(vec![1])
src/lib.rs:970:5: replace build_me_cmd -> Vec<u8> with vec![]
src/lib.rs:970:5: replace build_me_cmd -> Vec<u8> with vec![0]
src/lib.rs:970:5: replace build_me_cmd -> Vec<u8> with vec![1]
src/lib.rs:977:5: replace build_watch_cmd -> Vec<u8> with vec![]
src/lib.rs:977:5: replace build_watch_cmd -> Vec<u8> with vec![0]
src/lib.rs:977:5: replace build_watch_cmd -> Vec<u8> with vec![1]
src/lib.rs:1000:5: replace build_mc_cmd -> Vec<u8> with vec![]
src/lib.rs:1000:5: replace build_mc_cmd -> Vec<u8> with vec![0]
src/lib.rs:1000:5: replace build_mc_cmd -> Vec<u8> with vec![1]
src/lib.rs:1017:5: replace build_ms_flags -> Vec<u8> with vec![]
src/lib.rs:1017:5: replace build_ms_flags -> Vec<u8> with vec![0]
src/lib.rs:1017:5: replace build_ms_flags -> Vec<u8> with vec![1]
src/lib.rs:1042:5: replace build_mg_flags -> Vec<u8> with vec![]
src/lib.rs:1042:5: replace build_mg_flags -> Vec<u8> with vec![0]
src/lib.rs:1042:5: replace build_mg_flags -> Vec<u8> with vec![1]
src/lib.rs:1065:5: replace build_md_flags -> Vec<u8> with vec![]
src/lib.rs:1065:5: replace build_md_flags -> Vec<u8> with vec![0]
src/lib.rs:1065:5: replace build_md_flags -> Vec<u8> with vec![1]
src/lib.rs:1080:5: replace build_ma_flags -> Vec<u8> with vec![]
src/lib.rs:1080:5: replace build_ma_flags -> Vec<u8> with vec![0]
src/lib.rs:1080:5: replace build_ma_flags -> Vec<u8> with vec![1]
src/lib.rs:1103:5: replace build_lru_cmd -> Vec<u8> with vec![]
src/lib.rs:1103:5: replace build_lru_cmd -> Vec<u8> with vec![0]
src/lib.rs:1103:5: replace build_lru_cmd -> Vec<u8> with vec![1]
src/lib.rs:1134:5: replace udp_recv_rp -> io::Result<Vec<u8>> with Ok(vec![])
src/lib.rs:1134:5: replace udp_recv_rp -> io::Result<Vec<u8>> with Ok(vec![0])
src/lib.rs:1134:5: replace udp_recv_rp -> io::Result<Vec<u8>> with Ok(vec![1])
src/lib.rs:1139:14: replace < with == in udp_recv_rp
src/lib.rs:1139:14: replace < with > in udp_recv_rp
src/lib.rs:1139:14: replace < with <= in udp_recv_rp
src/lib.rs:1148:25: replace += with -= in udp_recv_rp
src/lib.rs:1160:5: replace version_cmd_udp -> io::Result<String> with Ok(String::new())
src/lib.rs:1160:5: replace version_cmd_udp -> io::Result<String> with Ok("xyzzy".into())
src/lib.rs:1165:5: replace version_cmd -> io::Result<String> with Ok(String::new())
src/lib.rs:1165:5: replace version_cmd -> io::Result<String> with Ok("xyzzy".into())
src/lib.rs:1171:5: replace quit_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1175:5: replace quit_cmd -> io::Result<()> with Ok(())
src/lib.rs:1180:5: replace shutdown_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1187:5: replace shutdown_cmd -> io::Result<()> with Ok(())
src/lib.rs:1197:5: replace cache_memlimit_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1210:5: replace cache_memlimit_cmd -> io::Result<()> with Ok(())
src/lib.rs:1222:5: replace flush_all_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1235:5: replace flush_all_cmd -> io::Result<()> with Ok(())
src/lib.rs:1251:5: replace storage_cmd_udp -> io::Result<bool> with Ok(true)
src/lib.rs:1251:5: replace storage_cmd_udp -> io::Result<bool> with Ok(false)
src/lib.rs:1282:5: replace storage_cmd -> io::Result<bool> with Ok(true)
src/lib.rs:1282:5: replace storage_cmd -> io::Result<bool> with Ok(false)
src/lib.rs:1302:5: replace delete_cmd_udp -> io::Result<bool> with Ok(true)
src/lib.rs:1302:5: replace delete_cmd_udp -> io::Result<bool> with Ok(false)
src/lib.rs:1315:5: replace delete_cmd -> io::Result<bool> with Ok(true)
src/lib.rs:1315:5: replace delete_cmd -> io::Result<bool> with Ok(false)
src/lib.rs:1325:5: replace auth_cmd -> io::Result<()> with Ok(())
src/lib.rs:1338:5: replace incr_decr_cmd_udp -> io::Result<Option<u64>> with Ok(None)
src/lib.rs:1338:5: replace incr_decr_cmd_udp -> io::Result<Option<u64>> with Ok(Some(0))
src/lib.rs:1338:5: replace incr_decr_cmd_udp -> io::Result<Option<u64>> with Ok(Some(1))
src/lib.rs:1358:5: replace incr_decr_cmd -> io::Result<Option<u64>> with Ok(None)
src/lib.rs:1358:5: replace incr_decr_cmd -> io::Result<Option<u64>> with Ok(Some(0))
src/lib.rs:1358:5: replace incr_decr_cmd -> io::Result<Option<u64>> with Ok(Some(1))
src/lib.rs:1371:5: replace touch_cmd_udp -> io::Result<bool> with Ok(true)
src/lib.rs:1371:5: replace touch_cmd_udp -> io::Result<bool> with Ok(false)
src/lib.rs:1385:5: replace touch_cmd -> io::Result<bool> with Ok(true)
src/lib.rs:1385:5: replace touch_cmd -> io::Result<bool> with Ok(false)
src/lib.rs:1397:5: replace retrieval_cmd_udp -> io::Result<Vec<Item>> with Ok(vec![])
src/lib.rs:1407:5: replace retrieval_cmd -> io::Result<Vec<Item>> with Ok(vec![])
src/lib.rs:1418:5: replace stats_cmd_udp -> io::Result<HashMap<String, String>> with Ok(HashMap::new())
src/lib.rs:1418:5: replace stats_cmd_udp -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([(String::new(), String::new())]))
src/lib.rs:1418:5: replace stats_cmd_udp -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([(String::new(), "xyzzy".into())]))
src/lib.rs:1418:5: replace stats_cmd_udp -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([("xyzzy".into(), String::new())]))
src/lib.rs:1418:5: replace stats_cmd_udp -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([("xyzzy".into(), "xyzzy".into())]))
src/lib.rs:1426:5: replace stats_cmd -> io::Result<HashMap<String, String>> with Ok(HashMap::new())
src/lib.rs:1426:5: replace stats_cmd -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([(String::new(), String::new())]))
src/lib.rs:1426:5: replace stats_cmd -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([(String::new(), "xyzzy".into())]))
src/lib.rs:1426:5: replace stats_cmd -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([("xyzzy".into(), String::new())]))
src/lib.rs:1426:5: replace stats_cmd -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([("xyzzy".into(), "xyzzy".into())]))
src/lib.rs:1436:5: replace slabs_automove_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1444:5: replace slabs_automove_cmd -> io::Result<()> with Ok(())
src/lib.rs:1450:5: replace lru_crawler_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1458:5: replace lru_crawler_cmd -> io::Result<()> with Ok(())
src/lib.rs:1468:5: replace lru_crawler_sleep_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1476:5: replace lru_crawler_sleep_cmd -> io::Result<()> with Ok(())
src/lib.rs:1483:5: replace lru_crawler_tocrawl_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1491:5: replace lru_crawler_tocrawl_cmd -> io::Result<()> with Ok(())
src/lib.rs:1501:5: replace lru_crawler_crawl_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1509:5: replace lru_crawler_crawl_cmd -> io::Result<()> with Ok(())
src/lib.rs:1520:5: replace slabs_reassign_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1529:5: replace slabs_reassign_cmd -> io::Result<()> with Ok(())
src/lib.rs:1539:5: replace lru_crawler_metadump_cmd -> io::Result<Vec<String>> with Ok(vec![])
src/lib.rs:1539:5: replace lru_crawler_metadump_cmd -> io::Result<Vec<String>> with Ok(vec![String::new()])
src/lib.rs:1539:5: replace lru_crawler_metadump_cmd -> io::Result<Vec<String>> with Ok(vec!["xyzzy".into()])
src/lib.rs:1548:5: replace lru_crawler_mgdump_cmd -> io::Result<Vec<String>> with Ok(vec![])
src/lib.rs:1548:5: replace lru_crawler_mgdump_cmd -> io::Result<Vec<String>> with Ok(vec![String::new()])
src/lib.rs:1548:5: replace lru_crawler_mgdump_cmd -> io::Result<Vec<String>> with Ok(vec!["xyzzy".into()])
src/lib.rs:1554:5: replace mn_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1559:5: replace mn_cmd -> io::Result<()> with Ok(())
src/lib.rs:1565:5: replace me_cmd_udp -> io::Result<Option<String>> with Ok(None)
src/lib.rs:1565:5: replace me_cmd_udp -> io::Result<Option<String>> with Ok(Some(String::new()))
src/lib.rs:1565:5: replace me_cmd_udp -> io::Result<Option<String>> with Ok(Some("xyzzy".into()))
src/lib.rs:1573:5: replace me_cmd -> io::Result<Option<String>> with Ok(None)
src/lib.rs:1573:5: replace me_cmd -> io::Result<Option<String>> with Ok(Some(String::new()))
src/lib.rs:1573:5: replace me_cmd -> io::Result<Option<String>> with Ok(Some("xyzzy".into()))
src/lib.rs:1582:5: replace execute_cmd -> io::Result<Vec<PipelineResponse>> with Ok(vec![])
src/lib.rs:1589:13: replace || with && in execute_cmd
src/lib.rs:1588:13: replace || with && in execute_cmd
src/lib.rs:1587:13: replace || with && in execute_cmd
src/lib.rs:1592:17: replace || with && in execute_cmd
src/lib.rs:1591:41: replace && with || in execute_cmd
src/lib.rs:1591:87: replace == with != in execute_cmd
src/lib.rs:1591:68: replace == with != in execute_cmd
src/lib.rs:1592:45: replace && with || in execute_cmd
src/lib.rs:1592:91: replace == with != in execute_cmd
src/lib.rs:1592:72: replace == with != in execute_cmd
src/lib.rs:1607:13: replace || with && in execute_cmd
src/lib.rs:1606:13: replace || with && in execute_cmd
src/lib.rs:1605:13: replace || with && in execute_cmd
src/lib.rs:1604:13: replace || with && in execute_cmd
src/lib.rs:1603:13: replace || with && in execute_cmd
src/lib.rs:1609:45: replace == with != in execute_cmd
src/lib.rs:1614:23: replace == with != in execute_cmd
src/lib.rs:1620:45: replace || with && in execute_cmd
src/lib.rs:1628:43: replace || with && in execute_cmd
src/lib.rs:1628:23: replace == with != in execute_cmd
src/lib.rs:1630:49: replace || with && in execute_cmd
src/lib.rs:1640:13: replace || with && in execute_cmd
src/lib.rs:1639:13: replace || with && in execute_cmd
src/lib.rs:1638:13: replace || with && in execute_cmd
src/lib.rs:1637:13: replace || with && in execute_cmd
src/lib.rs:1636:13: replace || with && in execute_cmd
src/lib.rs:1635:13: replace || with && in execute_cmd
src/lib.rs:1639:20: replace == with != in execute_cmd
src/lib.rs:1640:20: replace == with != in execute_cmd
src/lib.rs:1643:23: replace == with != in execute_cmd
src/lib.rs:1677:5: replace watch_cmd -> io::Result<()> with Ok(())
src/lib.rs:1794:5: replace lru_cmd_udp -> io::Result<()> with Ok(())
src/lib.rs:1799:5: replace lru_cmd -> io::Result<()> with Ok(())
src/lib.rs:1918:9: replace Connection::version -> io::Result<String> with Ok(String::new())
src/lib.rs:1918:9: replace Connection::version -> io::Result<String> with Ok("xyzzy".into())
src/lib.rs:1945:9: replace Connection::quit -> io::Result<()> with Ok(())
src/lib.rs:1972:9: replace Connection::shutdown -> io::Result<()> with Ok(())
src/lib.rs:1999:9: replace Connection::cache_memlimit -> io::Result<()> with Ok(())
src/lib.rs:2026:9: replace Connection::flush_all -> io::Result<()> with Ok(())
src/lib.rs:2061:9: replace Connection::set -> io::Result<bool> with Ok(true)
src/lib.rs:2061:9: replace Connection::set -> io::Result<bool> with Ok(false)
src/lib.rs:2145:9: replace Connection::add -> io::Result<bool> with Ok(true)
src/lib.rs:2145:9: replace Connection::add -> io::Result<bool> with Ok(false)
src/lib.rs:2229:9: replace Connection::replace -> io::Result<bool> with Ok(true)
src/lib.rs:2229:9: replace Connection::replace -> io::Result<bool> with Ok(false)
src/lib.rs:2313:9: replace Connection::append -> io::Result<bool> with Ok(true)
src/lib.rs:2313:9: replace Connection::append -> io::Result<bool> with Ok(false)
src/lib.rs:2397:9: replace Connection::prepend -> io::Result<bool> with Ok(true)
src/lib.rs:2397:9: replace Connection::prepend -> io::Result<bool> with Ok(false)
src/lib.rs:2482:9: replace Connection::cas -> io::Result<bool> with Ok(true)
src/lib.rs:2482:9: replace Connection::cas -> io::Result<bool> with Ok(false)
src/lib.rs:2561:9: replace Connection::auth -> io::Result<()> with Ok(())
src/lib.rs:2591:9: replace Connection::delete -> io::Result<bool> with Ok(true)
src/lib.rs:2591:9: replace Connection::delete -> io::Result<bool> with Ok(false)
src/lib.rs:2624:9: replace Connection::incr -> io::Result<Option<u64>> with Ok(None)
src/lib.rs:2624:9: replace Connection::incr -> io::Result<Option<u64>> with Ok(Some(0))
src/lib.rs:2624:9: replace Connection::incr -> io::Result<Option<u64>> with Ok(Some(1))
src/lib.rs:2659:9: replace Connection::decr -> io::Result<Option<u64>> with Ok(None)
src/lib.rs:2659:9: replace Connection::decr -> io::Result<Option<u64>> with Ok(Some(0))
src/lib.rs:2659:9: replace Connection::decr -> io::Result<Option<u64>> with Ok(Some(1))
src/lib.rs:2694:9: replace Connection::touch -> io::Result<bool> with Ok(true)
src/lib.rs:2694:9: replace Connection::touch -> io::Result<bool> with Ok(false)
src/lib.rs:2754:9: replace Connection::gets -> io::Result<Option<Item>> with Ok(None)
src/lib.rs:2791:9: replace Connection::gat -> io::Result<Option<Item>> with Ok(None)
src/lib.rs:2832:9: replace Connection::gats -> io::Result<Option<Item>> with Ok(None)
src/lib.rs:2873:9: replace Connection::get_multi -> io::Result<Vec<Item>> with Ok(vec![])
src/lib.rs:2935:9: replace Connection::gets_multi -> io::Result<Vec<Item>> with Ok(vec![])
src/lib.rs:3001:9: replace Connection::gat_multi -> io::Result<Vec<Item>> with Ok(vec![])
src/lib.rs:3067:9: replace Connection::gats_multi -> io::Result<Vec<Item>> with Ok(vec![])
src/lib.rs:3128:9: replace Connection::stats -> io::Result<HashMap<String, String>> with Ok(HashMap::new())
src/lib.rs:3128:9: replace Connection::stats -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([(String::new(), String::new())]))
src/lib.rs:3128:9: replace Connection::stats -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([(String::new(), "xyzzy".into())]))
src/lib.rs:3128:9: replace Connection::stats -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([("xyzzy".into(), String::new())]))
src/lib.rs:3128:9: replace Connection::stats -> io::Result<HashMap<String, String>> with Ok(HashMap::from_iter([("xyzzy".into(), "xyzzy".into())]))
src/lib.rs:3155:9: replace Connection::slabs_automove -> io::Result<()> with Ok(())
src/lib.rs:3183:9: replace Connection::lru_crawler -> io::Result<()> with Ok(())
src/lib.rs:3210:9: replace Connection::lru_crawler_sleep -> io::Result<()> with Ok(())
src/lib.rs:3237:9: replace Connection::lru_crawler_tocrawl -> io::Result<()> with Ok(())
src/lib.rs:3264:9: replace Connection::lru_crawler_crawl -> io::Result<()> with Ok(())
src/lib.rs:3296:9: replace Connection::slabs_reassign -> io::Result<()> with Ok(())
src/lib.rs:3328:9: replace Connection::lru_crawler_metadump -> io::Result<Vec<String>> with Ok(vec![])
src/lib.rs:3328:9: replace Connection::lru_crawler_metadump -> io::Result<Vec<String>> with Ok(vec![String::new()])
src/lib.rs:3328:9: replace Connection::lru_crawler_metadump -> io::Result<Vec<String>> with Ok(vec!["xyzzy".into()])
src/lib.rs:3360:9: replace Connection::lru_crawler_mgdump -> io::Result<Vec<String>> with Ok(vec![])
src/lib.rs:3360:9: replace Connection::lru_crawler_mgdump -> io::Result<Vec<String>> with Ok(vec![String::new()])
src/lib.rs:3360:9: replace Connection::lru_crawler_mgdump -> io::Result<Vec<String>> with Ok(vec!["xyzzy".into()])
src/lib.rs:3387:9: replace Connection::mn -> io::Result<()> with Ok(())
src/lib.rs:3415:9: replace Connection::me -> io::Result<Option<String>> with Ok(None)
src/lib.rs:3415:9: replace Connection::me -> io::Result<Option<String>> with Ok(Some(String::new()))
src/lib.rs:3415:9: replace Connection::me -> io::Result<Option<String>> with Ok(Some("xyzzy".into()))
src/lib.rs:3713:9: replace Connection::lru -> io::Result<()> with Ok(())
src/lib.rs:3752:9: replace WatchStream::message -> io::Result<Option<String>> with Ok(None)
src/lib.rs:3752:9: replace WatchStream::message -> io::Result<Option<String>> with Ok(Some(String::new()))
src/lib.rs:3752:9: replace WatchStream::message -> io::Result<Option<String>> with Ok(Some("xyzzy".into()))
src/lib.rs:3759:14: replace == with != in WatchStream::message
src/lib.rs:3805:9: replace ClientCrc32::get -> io::Result<Option<Item>> with Ok(None)
src/lib.rs:3806:45: replace % with / in ClientCrc32::get
src/lib.rs:3806:45: replace % with + in ClientCrc32::get
src/lib.rs:3829:9: replace ClientCrc32::gets -> io::Result<Option<Item>> with Ok(None)
src/lib.rs:3830:45: replace % with / in ClientCrc32::gets
src/lib.rs:3830:45: replace % with + in ClientCrc32::gets
src/lib.rs:3853:9: replace ClientCrc32::gat -> io::Result<Option<Item>> with Ok(None)
src/lib.rs:3854:45: replace % with / in ClientCrc32::gat
src/lib.rs:3854:45: replace % with + in ClientCrc32::gat
src/lib.rs:3877:9: replace ClientCrc32::gats -> io::Result<Option<Item>> with Ok(None)
src/lib.rs:3878:45: replace % with / in ClientCrc32::gats
src/lib.rs:3878:45: replace % with + in ClientCrc32::gats
src/lib.rs:3907:9: replace ClientCrc32::set -> io::Result<bool> with Ok(true)
src/lib.rs:3907:9: replace ClientCrc32::set -> io::Result<bool> with Ok(false)
src/lib.rs:3908:45: replace % with / in ClientCrc32::set
src/lib.rs:3908:45: replace % with + in ClientCrc32::set
src/lib.rs:3937:9: replace ClientCrc32::add -> io::Result<bool> with Ok(true)
src/lib.rs:3937:9: replace ClientCrc32::add -> io::Result<bool> with Ok(false)
src/lib.rs:3938:45: replace % with / in ClientCrc32::add
src/lib.rs:3938:45: replace % with + in ClientCrc32::add
src/lib.rs:3967:9: replace ClientCrc32::replace -> io::Result<bool> with Ok(true)
src/lib.rs:3967:9: replace ClientCrc32::replace -> io::Result<bool> with Ok(false)
src/lib.rs:3968:45: replace % with / in ClientCrc32::replace
src/lib.rs:3968:45: replace % with + in ClientCrc32::replace
src/lib.rs:3997:9: replace ClientCrc32::append -> io::Result<bool> with Ok(true)
src/lib.rs:3997:9: replace ClientCrc32::append -> io::Result<bool> with Ok(false)
src/lib.rs:3998:45: replace % with / in ClientCrc32::append
src/lib.rs:3998:45: replace % with + in ClientCrc32::append
src/lib.rs:4027:9: replace ClientCrc32::prepend -> io::Result<bool> with Ok(true)
src/lib.rs:4027:9: replace ClientCrc32::prepend -> io::Result<bool> with Ok(false)
src/lib.rs:4028:45: replace % with / in ClientCrc32::prepend
src/lib.rs:4028:45: replace % with + in ClientCrc32::prepend
src/lib.rs:4058:9: replace ClientCrc32::cas -> io::Result<bool> with Ok(true)
src/lib.rs:4058:9: replace ClientCrc32::cas -> io::Result<bool> with Ok(false)
src/lib.rs:4059:45: replace % with / in ClientCrc32::cas
src/lib.rs:4059:45: replace % with + in ClientCrc32::cas
src/lib.rs:4088:9: replace ClientCrc32::delete -> io::Result<bool> with Ok(true)
src/lib.rs:4088:9: replace ClientCrc32::delete -> io::Result<bool> with Ok(false)
src/lib.rs:4089:45: replace % with / in ClientCrc32::delete
src/lib.rs:4089:45: replace % with + in ClientCrc32::delete
src/lib.rs:4116:9: replace ClientCrc32::incr -> io::Result<Option<u64>> with Ok(None)
src/lib.rs:4116:9: replace ClientCrc32::incr -> io::Result<Option<u64>> with Ok(Some(0))
src/lib.rs:4116:9: replace ClientCrc32::incr -> io::Result<Option<u64>> with Ok(Some(1))
src/lib.rs:4117:45: replace % with / in ClientCrc32::incr
src/lib.rs:4117:45: replace % with + in ClientCrc32::incr
src/lib.rs:4144:9: replace ClientCrc32::decr -> io::Result<Option<u64>> with Ok(None)
src/lib.rs:4144:9: replace ClientCrc32::decr -> io::Result<Option<u64>> with Ok(Some(0))
src/lib.rs:4144:9: replace ClientCrc32::decr -> io::Result<Option<u64>> with Ok(Some(1))
src/lib.rs:4145:45: replace % with / in ClientCrc32::decr
src/lib.rs:4145:45: replace % with + in ClientCrc32::decr
src/lib.rs:4172:9: replace ClientCrc32::touch -> io::Result<bool> with Ok(true)
src/lib.rs:4172:9: replace ClientCrc32::touch -> io::Result<bool> with Ok(false)
src/lib.rs:4173:45: replace % with / in ClientCrc32::touch
src/lib.rs:4173:45: replace % with + in ClientCrc32::touch
src/lib.rs:4195:9: replace ClientCrc32::me -> io::Result<Option<String>> with Ok(None)
src/lib.rs:4195:9: replace ClientCrc32::me -> io::Result<Option<String>> with Ok(Some(String::new()))
src/lib.rs:4195:9: replace ClientCrc32::me -> io::Result<Option<String>> with Ok(Some("xyzzy".into()))
src/lib.rs:4196:45: replace % with / in ClientCrc32::me
src/lib.rs:4196:45: replace % with + in ClientCrc32::me
src/lib.rs:4258:45: replace % with / in ClientCrc32::mg
src/lib.rs:4258:45: replace % with + in ClientCrc32::mg
src/lib.rs:4315:45: replace % with / in ClientCrc32::ms
src/lib.rs:4315:45: replace % with + in ClientCrc32::ms
src/lib.rs:4360:45: replace % with / in ClientCrc32::md
src/lib.rs:4360:45: replace % with + in ClientCrc32::md
src/lib.rs:4413:45: replace % with / in ClientCrc32::ma
src/lib.rs:4413:45: replace % with + in ClientCrc32::ma
src/lib.rs:4458:9: replace ClientHashRing::get -> io::Result<Option<Item>> with Ok(None)
src/lib.rs:4480:9: replace ClientHashRing::gets -> io::Result<Option<Item>> with Ok(None)
src/lib.rs:4502:9: replace ClientHashRing::gat -> io::Result<Option<Item>> with Ok(None)
src/lib.rs:4524:9: replace ClientHashRing::gats -> io::Result<Option<Item>> with Ok(None)
src/lib.rs:4552:9: replace ClientHashRing::set -> io::Result<bool> with Ok(true)
src/lib.rs:4552:9: replace ClientHashRing::set -> io::Result<bool> with Ok(false)
src/lib.rs:4582:9: replace ClientHashRing::add -> io::Result<bool> with Ok(true)
src/lib.rs:4582:9: replace ClientHashRing::add -> io::Result<bool> with Ok(false)
src/lib.rs:4612:9: replace ClientHashRing::replace -> io::Result<bool> with Ok(true)
src/lib.rs:4612:9: replace ClientHashRing::replace -> io::Result<bool> with Ok(false)
src/lib.rs:4642:9: replace ClientHashRing::append -> io::Result<bool> with Ok(true)
src/lib.rs:4642:9: replace ClientHashRing::append -> io::Result<bool> with Ok(false)
src/lib.rs:4672:9: replace ClientHashRing::prepend -> io::Result<bool> with Ok(true)
src/lib.rs:4672:9: replace ClientHashRing::prepend -> io::Result<bool> with Ok(false)
src/lib.rs:4703:9: replace ClientHashRing::cas -> io::Result<bool> with Ok(true)
src/lib.rs:4703:9: replace ClientHashRing::cas -> io::Result<bool> with Ok(false)
src/lib.rs:4733:9: replace ClientHashRing::delete -> io::Result<bool> with Ok(true)
src/lib.rs:4733:9: replace ClientHashRing::delete -> io::Result<bool> with Ok(false)
src/lib.rs:4759:9: replace ClientHashRing::incr -> io::Result<Option<u64>> with Ok(None)
src/lib.rs:4759:9: replace ClientHashRing::incr -> io::Result<Option<u64>> with Ok(Some(0))
src/lib.rs:4759:9: replace ClientHashRing::incr -> io::Result<Option<u64>> with Ok(Some(1))
src/lib.rs:4785:9: replace ClientHashRing::decr -> io::Result<Option<u64>> with Ok(None)
src/lib.rs:4785:9: replace ClientHashRing::decr -> io::Result<Option<u64>> with Ok(Some(0))
src/lib.rs:4785:9: replace ClientHashRing::decr -> io::Result<Option<u64>> with Ok(Some(1))
src/lib.rs:4811:9: replace ClientHashRing::touch -> io::Result<bool> with Ok(true)
src/lib.rs:4811:9: replace ClientHashRing::touch -> io::Result<bool> with Ok(false)
src/lib.rs:4832:9: replace ClientHashRing::me -> io::Result<Option<String>> with Ok(None)
src/lib.rs:4832:9: replace ClientHashRing::me -> io::Result<Option<String>> with Ok(Some(String::new()))
src/lib.rs:4832:9: replace ClientHashRing::me -> io::Result<Option<String>> with Ok(Some("xyzzy".into()))
src/lib.rs:5094:9: replace Pipeline<'a>::execute -> io::Result<Vec<PipelineResponse>> with Ok(vec![])
