pub trait Candidate {
// Required methods
fn display(&self) -> &str;
fn replacement(&self) -> &str;
}
Expand description
A completion candidate.
Required Methods§
Sourcefn replacement(&self) -> &str
fn replacement(&self) -> &str
Text to insert in line.