[][src]Struct plaster_forms::fields::select::Select

pub struct Select { /* fields omitted */ }

An autocompleting search select field

Trait Implementations

impl Component for Select[src]

type Message = Msg

Control message type which update loop get.

type Properties = Props

Properties type of component implementation. It sould be serializable because it's sent to dynamicaly created component (layed under VComp) and must be restored for a component with unknown type. Read more

fn on_mount(&mut self, _node: &Node)[src]

This method is called when the component is first mounted. It does not wait for children to render, only the top-level DOM element. Read more

impl Renderable<Select> for Select[src]

Auto Trait Implementations

impl !Sync for Select

impl Unpin for Select

impl !Send for Select

impl !UnwindSafe for Select

impl !RefUnwindSafe for Select

Blanket Implementations

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

impl<T> From<T> for T[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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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