pub struct Reply<T> {
pub choices: Vec<Suggestion<T>>,
}
Expand description
A ShellAC autocompletion reply. The type parameter is to allow borrowed or owned string types
Fields§
§choices: Vec<Suggestion<T>>
Trait Implementations§
impl<T: Eq> Eq for Reply<T>
impl<T> StructuralPartialEq for Reply<T>
Auto Trait Implementations§
impl<T> Freeze for Reply<T>
impl<T> RefUnwindSafe for Reply<T>where
T: RefUnwindSafe,
impl<T> Send for Reply<T>where
T: Send,
impl<T> Sync for Reply<T>where
T: Sync,
impl<T> Unpin for Reply<T>where
T: Unpin,
impl<T> UnwindSafe for Reply<T>where
T: UnwindSafe,
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