[][src]Trait i3_ipc::I3IPC

pub trait I3IPC: I3Protocol + Read + Write {
    fn decode_msg(&mut self) -> Result<(u32, Vec<u8>), Error> { ... }
}

Trait containing methods to encode and decode message from i3

Provided methods

fn decode_msg(&mut self) -> Result<(u32, Vec<u8>), Error>

Loading content...

Implementors

impl<T> I3IPC for T where
    T: I3Protocol + Read + Write
[src]

Loading content...