pub trait FrontendContextExt: FrontendContext {
// Provided method
fn recv(&self) -> Option<FrontendMessage> { ... }
}
Provided Methods§
sourcefn recv(&self) -> Option<FrontendMessage>
fn recv(&self) -> Option<FrontendMessage>
Attempts to receive one FrontendMessage
.
Returns None
if there is no message or the message is from a newer version of the plugin interface.