pub trait ScanFromStr {
// Required method
fn scan_from_str(&mut self, s: &str) -> Result<(), ScanError>;
}Expand description
从字符串 token 写入自身(最小子集)。
pub trait ScanFromStr {
// Required method
fn scan_from_str(&mut self, s: &str) -> Result<(), ScanError>;
}从字符串 token 写入自身(最小子集)。