[][src]Trait typed_html::OutputType

pub trait OutputType {
    type Events: Default + Display + Send;
    type EventTarget: Send;
    type EventListenerHandle: Send;
}

Marker trait for outputs

Associated Types

type Events: Default + Display + Send

The type that contains events for this output.

type EventTarget: Send

The type of event targets for this output.

type EventListenerHandle: Send

The type that's returned from attaching an event listener to a target.

Loading content...

Implementations on Foreign Types

impl OutputType for String[src]

String output

Loading content...

Implementors

impl OutputType for Dodrio[src]

impl OutputType for Stdweb[src]

type Events = Events

type EventTarget = Element

type EventListenerHandle = EventListenerHandle

Loading content...