Skip to main content

TextPrompt

Struct TextPrompt 

Source
pub struct TextPrompt<'a> { /* private fields */ }
Expand description

A prompt widget that displays a message and a text input.

By default, the prompt reserves space for the TextState status symbol before the prompt message. Use TextPrompt::without_status_symbol when the surrounding UI owns completion or cancellation state and the prompt should start directly with the message.

Implementations§

Source§

impl<'a> TextPrompt<'a>

Source

pub const fn new(message: Cow<'a, str>) -> TextPrompt<'a>

Source

pub fn with_block(self, block: Block<'a>) -> TextPrompt<'a>

Source

pub const fn with_render_style( self, render_style: TextRenderStyle, ) -> TextPrompt<'a>

Source

pub const fn without_status_symbol(self) -> TextPrompt<'a>

Renders the prompt without the status symbol or its following space.

The prompt state’s Status is still updated and available through TextState. This only changes the rendered prefix, so the prompt message, input value, wrapping width, and cursor position all move left by the width of the hidden status symbol prefix.

Trait Implementations§

Source§

impl<'a> Clone for TextPrompt<'a>

Source§

fn clone(&self) -> TextPrompt<'a>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for TextPrompt<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for TextPrompt<'_>

Source§

fn default() -> TextPrompt<'_>

Returns the “default value” for a type. Read more
Source§

impl<'a> Eq for TextPrompt<'a>

Source§

impl<T> From<T> for TextPrompt<'static>
where T: Into<Cow<'static, str>>,

Source§

fn from(message: T) -> TextPrompt<'static>

Converts to this type from the input type.
Source§

impl<'a> PartialEq for TextPrompt<'a>

Source§

fn eq(&self, other: &TextPrompt<'a>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Prompt for TextPrompt<'_>

Source§

fn draw( self, frame: &mut Frame<'_>, area: Rect, state: &mut <TextPrompt<'_> as StatefulWidget>::State, )

Draws the prompt widget.

This is in addition to the Widget trait implementation as we need the Frame to set the cursor position.

Source§

impl<'a> StatefulWidget for TextPrompt<'a>

Source§

type State = TextState<'a>

State associated with the stateful widget. Read more
Source§

fn render( self, area: Rect, buf: &mut Buffer, state: &mut <TextPrompt<'a> as StatefulWidget>::State, )

Draws the current state of the widget in the given buffer. That is the only method required to implement a custom stateful widget.
Source§

impl<'a> StructuralPartialEq for TextPrompt<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for TextPrompt<'a>

§

impl<'a> RefUnwindSafe for TextPrompt<'a>

§

impl<'a> Send for TextPrompt<'a>

§

impl<'a> Sync for TextPrompt<'a>

§

impl<'a> Unpin for TextPrompt<'a>

§

impl<'a> UnsafeUnpin for TextPrompt<'a>

§

impl<'a> UnwindSafe for TextPrompt<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.