pub trait Transport {
// Required methods
fn send_line(&mut self, line: &str) -> Result<()>;
fn read_line(&mut self) -> Result<String>;
}Expand description
Basic transport abstraction over the KeePassXC IPC channel.
pub trait Transport {
// Required methods
fn send_line(&mut self, line: &str) -> Result<()>;
fn read_line(&mut self) -> Result<String>;
}Basic transport abstraction over the KeePassXC IPC channel.