pub enum CompletionChunk<'r> {
Show 21 variants
Colon,
Comma,
Equals,
Semicolon,
LeftAngleBracket,
RightAngleBracket,
LeftBrace,
RightBrace,
LeftParenthesis,
RightParenthesis,
LeftSquareBracket,
RightSquareBracket,
HorizontalSpace(String),
VerticalSpace(String),
CurrentParameter(String),
Informative(String),
Placeholder(String),
ResultType(String),
Text(String),
TypedText(String),
Optional(CompletionString<'r>),
}Expand description
A piece of a code completion string.
Variants§
Colon
A colon (':').
Comma
A comma (',').
Equals
An equals sign ('=').
Semicolon
A semicolon (';').
LeftAngleBracket
A left angle bracket ('<').
RightAngleBracket
A right angle bracket ('>').
LeftBrace
A left brace ('{').
RightBrace
A right brace ('}').
LeftParenthesis
A left parentesis ('(')).
RightParenthesis
A right parenthesis (')').
LeftSquareBracket
A left square bracket ('[').
RightSquareBracket
A right square bracket (']').
HorizontalSpace(String)
Horizontal space (e.g., ' ').
VerticalSpace(String)
Vertical space (e.g., '\n').
CurrentParameter(String)
Text that describes the current parameter when code completion was run on a function call, message send, or template specialization.
Informative(String)
Informative text that should be displayed but not inserted as part of the template.
Placeholder(String)
Text that should be replaced by the user.
ResultType(String)
Text that specifies the result type of the containing result.
Text(String)
Text that should be inserted.
TypedText(String)
Text that the user would be expected to type to get the containing code completion result.
Optional(CompletionString<'r>)
An optional piece that could be part of the template but is not required.
Implementations§
Source§impl<'r> CompletionChunk<'r>
impl<'r> CompletionChunk<'r>
Trait Implementations§
Source§impl<'r> Clone for CompletionChunk<'r>
impl<'r> Clone for CompletionChunk<'r>
Source§fn clone(&self) -> CompletionChunk<'r>
fn clone(&self) -> CompletionChunk<'r>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more