1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# sfo-split Implement splittable object ## Example ```rust pub struct TestRead { } pub struct TestWrite { } let splittable = Splittable::new(TestRead{}, TestWrite{}); let (r, w) = splittable.split(); ```