1
2
3
4
5
6
use crate::{ReadApi, RwApi, WriteApi};

impl<T, R> RwApi for T
    where
        T: ReadApi<Target=R> + WriteApi<Target=R>
{}