pub trait LockableStream: CLIStream {
// Required method
fn lock<'a>(&'a self) -> Box<dyn CLIStream + 'a>;
}Expand description
A CLIStream that can be locked for
synchronized access.
pub trait LockableStream: CLIStream {
// Required method
fn lock<'a>(&'a self) -> Box<dyn CLIStream + 'a>;
}A CLIStream that can be locked for
synchronized access.