pub struct AutocompleteLine {
pub full_new_line: String,
/* private fields */
}
Expand description
One autocomplete suggestion
Fields§
§full_new_line: String
The entire new suggested line buffer
Implementations§
Source§impl AutocompleteLine
impl AutocompleteLine
pub fn get_display(&self) -> &str
pub fn get_additional_part(&self) -> &str
Trait Implementations§
Source§impl Clone for AutocompleteLine
impl Clone for AutocompleteLine
Source§fn clone(&self) -> AutocompleteLine
fn clone(&self) -> AutocompleteLine
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 AutocompleteLine
impl Debug for AutocompleteLine
Source§impl PartialEq for AutocompleteLine
impl PartialEq for AutocompleteLine
impl StructuralPartialEq for AutocompleteLine
Auto Trait Implementations§
impl Freeze for AutocompleteLine
impl RefUnwindSafe for AutocompleteLine
impl Send for AutocompleteLine
impl Sync for AutocompleteLine
impl Unpin for AutocompleteLine
impl UnwindSafe for AutocompleteLine
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