Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456 datafusion-rustyline 2.0.0-alpha-20180628 - Docs.rs
//! Hints (suggestions at the right of the prompt as you type).
/// Hints provider
pubtraitHinter{/// Takes the currently edited `line` with the cursor `pos`ition and
/// returns the string that should be displayed or `None`
/// if no hint is available for the text the user currently typed.
fnhint(&self, line:&str, pos:usize)->Option<String>;}implHinter for () {fnhint(&self, _line:&str, _pos:usize)->Option<String>{None}}