[][src]Trait i3ipc_types::I3IPC

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

Trait containing methods to encode and decode message from i3

Provided methods

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

Loading content...

Implementors

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

Loading content...