[][src]Struct plaster_forms::TestForm

pub struct TestForm { /* fields omitted */ }

Trait Implementations

impl Form for TestForm[src]

type Value = TestValue

impl Component for TestForm[src]

type Message = TestFormMessage

Control message type which update loop get.

type Properties = TestFormProps

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 change(&mut self, Self::Properties) -> bool[src]

This method called when properties changes, and once when component created.

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<TestForm> for TestForm[src]

Auto Trait Implementations

impl !Sync for TestForm

impl Unpin for TestForm

impl !Send for TestForm

impl !UnwindSafe for TestForm

impl !RefUnwindSafe for TestForm

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]