pub trait ServerOutputMatcher<R>where
R: Send,{
// Required method
fn match_line(line: &str) -> Option<R>;
}
Expand description
A type that can be used to scan stdout from the VS Code server. Returns some other type that, in turn, is returned from starting the server.
Required Methods§
fn match_line(line: &str) -> Option<R>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.