Enum rustyline::config::CompletionType [−][src]
#[non_exhaustive]
pub enum CompletionType {
Circular,
List,
}
Expand description
Tab completion style
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Circular
Complete the next full match (like in Vim by default)
List
Complete till longest match. When more than one match, list all matches (like in Bash/Readline).
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CompletionType
impl Send for CompletionType
impl Sync for CompletionType
impl Unpin for CompletionType
impl UnwindSafe for CompletionType
Blanket Implementations
Mutably borrows from an owned value. Read more