pub struct CompSpec {
pub actions: Vec<String>,
pub wordlist: Option<String>,
pub function: Option<String>,
pub command: Option<String>,
pub globpat: Option<String>,
pub prefix: Option<String>,
pub suffix: Option<String>,
}Expand description
A completion specification for the complete builtin
Fields§
§actions: Vec<String>§wordlist: Option<String>§function: Option<String>§command: Option<String>§globpat: Option<String>§prefix: Option<String>§suffix: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompSpec
impl RefUnwindSafe for CompSpec
impl Send for CompSpec
impl Sync for CompSpec
impl Unpin for CompSpec
impl UnsafeUnpin for CompSpec
impl UnwindSafe for CompSpec
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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more