pub struct InputState {
pub buffer: String,
pub cursor_pos: usize,
pub mode: InputMode,
pub history: Vec<String>,
pub history_index: Option<usize>,
pub suggestion: String,
pub pasted_buffer: Option<String>,
pub pasted_images: Vec<PathBuf>,
pub slash_matches: Vec<(String, String)>,
pub slash_selected: usize,
}Fields§
§buffer: String§cursor_pos: usize§mode: InputMode§history: Vec<String>§history_index: Option<usize>§suggestion: String§pasted_buffer: Option<String>§pasted_images: Vec<PathBuf>§slash_matches: Vec<(String, String)>§slash_selected: usizeImplementations§
Source§impl InputState
impl InputState
pub fn new() -> Self
pub fn insert_image_paste(&mut self, path: PathBuf) -> usize
pub fn expand_for_submit(&self) -> String
pub fn complete_suggestion(&mut self)
pub fn insert_char(&mut self, c: char)
pub fn delete_char(&mut self)
pub fn delete_char_forward(&mut self)
pub fn move_cursor_left(&mut self)
pub fn move_cursor_right(&mut self)
pub fn move_word_left(&mut self)
pub fn move_word_right(&mut self)
pub fn history_prev(&mut self)
pub fn history_next(&mut self)
pub fn push_history(&mut self, text: String)
pub fn clear(&mut self)
pub fn get_display_text(&self) -> &str
pub fn cursor_line_col(&self) -> (usize, usize)
pub fn line_count(&self) -> usize
pub fn cursor_up_line(&mut self) -> bool
pub fn cursor_down_line(&mut self) -> bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InputState
impl RefUnwindSafe for InputState
impl Send for InputState
impl Sync for InputState
impl Unpin for InputState
impl UnsafeUnpin for InputState
impl UnwindSafe for InputState
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
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