[][src]Struct meli::components::utilities::widgets::FormWidget

pub struct FormWidget<T> where
    T: 'static + Debug + Copy + Default + Send + Sync
{ fields: HashMap<Cow<'static, str>, Field>, layout: Vec<Cow<'static, str>>, buttons: ButtonWidget<T>, field_name_max_length: usize, cursor: usize, focus: FormFocus, hide_buttons: bool, dirty: bool, id: ComponentId, }

Fields

fields: HashMap<Cow<'static, str>, Field>layout: Vec<Cow<'static, str>>buttons: ButtonWidget<T>field_name_max_length: usizecursor: usizefocus: FormFocushide_buttons: booldirty: boolid: ComponentId

Implementations

impl<T: 'static + Debug + Copy + Default + Send + Sync> FormWidget<T>[src]

pub fn new(action: (Cow<'static, str>, T)) -> FormWidget<T>[src]

pub fn cursor(&self) -> usize[src]

pub fn set_cursor(&mut self, new_cursor: usize)[src]

pub fn hide_buttons(&mut self)[src]

pub fn len(&self) -> usize[src]

pub fn add_button(&mut self, val: (Cow<'static, str>, T))[src]

pub fn push_choices(
    &mut self,
    value: (Cow<'static, str>, Vec<Cow<'static, str>>)
)
[src]

pub fn push_cl(
    &mut self,
    value: (Cow<'static, str>, String, Box<dyn Fn(&Context, &str) -> Vec<AutoCompleteEntry> + Send + Sync>)
)
[src]

pub fn push(&mut self, value: (Cow<'static, str>, String))[src]

pub fn insert(&mut self, index: usize, value: (Cow<'static, str>, Field))[src]

pub fn values(&self) -> &HashMap<Cow<'static, str>, Field>[src]

pub fn values_mut(&mut self) -> &mut HashMap<Cow<'static, str>, Field>[src]

pub fn collect(self) -> Option<HashMap<Cow<'static, str>, Field>>[src]

pub fn buttons_result(&self) -> Option<T>[src]

Trait Implementations

impl<T: 'static + Debug + Copy + Default + Send + Sync> Component for FormWidget<T>[src]

impl<T: Debug> Debug for FormWidget<T> where
    T: 'static + Debug + Copy + Default + Send + Sync
[src]

impl<T: Default> Default for FormWidget<T> where
    T: 'static + Debug + Copy + Default + Send + Sync
[src]

impl<T: 'static + Debug + Copy + Default + Send + Sync> Display for FormWidget<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for FormWidget<T>

impl<T> Send for FormWidget<T>

impl<T> Sync for FormWidget<T>

impl<T> Unpin for FormWidget<T> where
    T: Unpin

impl<T> !UnwindSafe for FormWidget<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]