Enum rustyline::config::CompletionType
source · #[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§
source§impl Clone for CompletionType
impl Clone for CompletionType
source§fn clone(&self) -> CompletionType
fn clone(&self) -> CompletionType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CompletionType
impl Debug for CompletionType
source§impl PartialEq for CompletionType
impl PartialEq for CompletionType
source§fn eq(&self, other: &CompletionType) -> bool
fn eq(&self, other: &CompletionType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for CompletionType
impl Eq for CompletionType
impl StructuralPartialEq for CompletionType
Auto Trait Implementations§
impl Freeze for CompletionType
impl RefUnwindSafe for CompletionType
impl Send for CompletionType
impl Sync for CompletionType
impl Unpin for CompletionType
impl UnwindSafe for CompletionType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)