Trait TryFrom

Source
pub trait TryFrom<T>: Sized {
    type Error;

    // Required method
    fn try_from(_: T) -> Result<Self, Self::Error>;
}
Expand description

Attempt to construct Self via a conversion.

This definition is only temporary until Rust’s TryFrom is stabilized.

Required Associated Types§

Source

type Error

The type returned in the event of a conversion error.

Required Methods§

Source

fn try_from(_: T) -> Result<Self, Self::Error>

Performs the conversion.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl TryFrom<Value> for Option<FormDataEntry>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<bool>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<f64>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<i8>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<i16>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<i32>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<i64>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<u8>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<u16>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<u32>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<u64>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<usize>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<Symbol>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for Option<String>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for bool

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for f64

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for i8

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for i16

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for i32

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for i64

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for u8

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for u16

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for u32

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for u64

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for ()

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for usize

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Value> for String

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl TryFrom<Number> for f64

Source§

type Error = ConversionError

Source§

fn try_from(number: Number) -> Result<Self, Self::Error>

Source§

impl TryFrom<Number> for i8

Source§

type Error = ConversionError

Source§

fn try_from(number: Number) -> Result<Self, Self::Error>

Source§

impl TryFrom<Number> for i16

Source§

type Error = ConversionError

Source§

fn try_from(number: Number) -> Result<Self, Self::Error>

Source§

impl TryFrom<Number> for i32

Source§

type Error = ConversionError

Source§

fn try_from(number: Number) -> Result<Self, Self::Error>

Source§

impl TryFrom<Number> for i64

Source§

type Error = ConversionError

Source§

fn try_from(number: Number) -> Result<Self, Self::Error>

Source§

impl TryFrom<Number> for u8

Source§

type Error = ConversionError

Source§

fn try_from(number: Number) -> Result<Self, Self::Error>

Source§

impl TryFrom<Number> for u16

Source§

type Error = ConversionError

Source§

fn try_from(number: Number) -> Result<Self, Self::Error>

Source§

impl TryFrom<Number> for u32

Source§

type Error = ConversionError

Source§

fn try_from(number: Number) -> Result<Self, Self::Error>

Source§

impl TryFrom<Number> for u64

Source§

type Error = ConversionError

Source§

fn try_from(number: Number) -> Result<Self, Self::Error>

Source§

impl TryFrom<Number> for usize

Source§

type Error = ConversionError

Source§

fn try_from(number: Number) -> Result<Self, Self::Error>

Source§

impl<'a> TryFrom<&'a Value> for &'a str

Source§

type Error = ConversionError

Source§

fn try_from(value: &'a Value) -> Result<Self, Self::Error>

Source§

impl<'a> TryFrom<&'a Value> for Option<&'a str>

Source§

type Error = ConversionError

Source§

fn try_from(value: &'a Value) -> Result<Self, Self::Error>

Source§

impl<'a> TryFrom<&'a Value> for Option<&'a Reference>

Source§

type Error = ConversionError

Source§

fn try_from(value: &'a Value) -> Result<Self, Self::Error>

Source§

impl<'a, E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<&'a Array> for Vec<V>

Source§

type Error = ConversionError

Source§

fn try_from(array: &'a Array) -> Result<Self, Self::Error>

Source§

impl<'de, T: Deserialize<'de>> TryFrom<Value> for Option<Serde<T>>

Source§

impl<E: Into<ConversionError>, T: TryFrom<Value, Error = E>> TryFrom<Value> for Vec<T>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl<E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<Value> for BTreeMap<String, V>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl<E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<Value> for HashMap<String, V>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl<E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<Array> for Vec<V>

Source§

type Error = ConversionError

Source§

fn try_from(array: Array) -> Result<Self, Self::Error>

Source§

impl<E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<Object> for BTreeMap<String, V>

Source§

type Error = ConversionError

Source§

fn try_from(object: Object) -> Result<Self, Self::Error>

Source§

impl<E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<Object> for HashMap<String, V>

Source§

type Error = ConversionError

Source§

fn try_from(object: Object) -> Result<Self, Self::Error>

Source§

impl<T> TryFrom<Value> for Option<Vec<T>>
where T: TryFrom<Value, Error = ConversionError>,

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl<T: TryFrom<Value, Error = ConversionError> + AsRef<Reference>> TryFrom<Value> for Option<T>

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl<V> TryFrom<Value> for Option<BTreeMap<String, V>>
where V: TryFrom<Value, Error = ConversionError>,

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Source§

impl<V> TryFrom<Value> for Option<HashMap<String, V>>
where V: TryFrom<Value, Error = ConversionError>,

Source§

type Error = ConversionError

Source§

fn try_from(value: Value) -> Result<Self, Self::Error>

Implementors§

Source§

impl TryFrom<Value> for Value

Source§

impl TryFrom<Value> for CanvasStyle

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for FormDataEntry

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for GamepadMappingType

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for MutationRecord

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SocketReadyState

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TouchType

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for AddColorStopError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DrawImageError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for GetImageDataError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for XhrSetResponseTypeError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SocketMessageData

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Array

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Null

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Object

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Reference

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Symbol

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Undefined

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for AbortError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DomException

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Error

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for HierarchyRequestError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for IndexSizeError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for InvalidAccessError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for InvalidCharacterError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for InvalidStateError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for NotFoundError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for NotSupportedError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SecurityError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SyntaxError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TypeError

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for AuxClickEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for BeforeUnloadEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for BlurEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ClickEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ContextMenuEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DataTransfer

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DataTransferItem

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DataTransferItemList

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DoubleClickEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DragDropEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DragEndEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DragEnterEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DragEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DragExitEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DragLeaveEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DragOverEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DragRelatedEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DragStartEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for FocusEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for FullscreenChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for GamepadConnectedEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for GamepadDisconnectedEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for GotPointerCaptureEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for HashChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for InputEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for KeyDownEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for KeyPressEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for KeyUpEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for LoadEndEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for LoadStartEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for LostPointerCaptureEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for MouseDownEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for MouseEnterEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for MouseLeaveEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for MouseMoveEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for MouseOutEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for MouseOverEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for MouseUpEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for MouseWheelEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for PointerCancelEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for PointerDownEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for PointerEnterEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for PointerLeaveEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for PointerLockChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for PointerLockErrorEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for PointerMoveEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for PointerOutEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for PointerOverEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for PointerUpEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for PopStateEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ProgressAbortEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ProgressErrorEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ProgressEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ProgressLoadEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ReadyStateChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ResizeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ResourceAbortEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ResourceErrorEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ResourceLoadEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ScrollEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SelectionChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SlotChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SocketCloseEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SocketErrorEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SocketMessageEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SocketOpenEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SubmitEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TouchCancel

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TouchEnd

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TouchEnter

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TouchEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TouchLeave

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TouchMove

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TouchStart

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for UnloadEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for CanvasElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ImageElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for InputElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for OptionElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SelectElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for SlotElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TemplateElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TextAreaElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ArrayBuffer

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Blob

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for CanvasGradient

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for CanvasPattern

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for CanvasRenderingContext2d

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Date

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Document

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for DocumentFragment

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Element

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for EventTarget

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for File

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for FileList

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for FileReader

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for FormData

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Gamepad

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for GamepadButton

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for History

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for HtmlCollection

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for HtmlElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ImageData

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Location

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for MutationObserver

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Node

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for NodeList

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Rect

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Selection

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for ShadowRoot

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Storage

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for StringMap

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TextMetrics

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TextNode

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for TokenList

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Touch

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for WebSocket

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Window

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for XmlHttpRequest

Source§

type Error = ConversionError

Source§

impl TryFrom<Value> for Value

Source§

type Error = ConversionError

Source§

impl TryFrom<bool> for Value

Source§

impl TryFrom<char> for Value

Source§

impl TryFrom<f32> for Value

Source§

impl TryFrom<f32> for Number

Source§

impl TryFrom<f64> for Value

Source§

impl TryFrom<f64> for Number

Source§

impl TryFrom<i8> for Value

Source§

impl TryFrom<i8> for Number

Source§

impl TryFrom<i16> for Value

Source§

impl TryFrom<i16> for Number

Source§

impl TryFrom<i32> for Value

Source§

impl TryFrom<i32> for Number

Source§

impl TryFrom<i64> for Value

Source§

impl TryFrom<i64> for Number

Source§

type Error = ConversionError

Source§

impl TryFrom<u8> for Value

Source§

impl TryFrom<u8> for Number

Source§

impl TryFrom<u16> for Value

Source§

impl TryFrom<u16> for Number

Source§

impl TryFrom<u32> for Value

Source§

impl TryFrom<u32> for Number

Source§

impl TryFrom<u64> for Value

Source§

impl TryFrom<u64> for Number

Source§

type Error = ConversionError

Source§

impl TryFrom<usize> for Value

Source§

impl TryFrom<usize> for Number

Source§

type Error = ConversionError

Source§

impl TryFrom<Array> for Reference

Source§

impl TryFrom<Null> for Value

Source§

impl TryFrom<Object> for Reference

Source§

impl TryFrom<Reference> for Value

Source§

impl TryFrom<Reference> for Array

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Object

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Reference

Source§

impl TryFrom<Reference> for AbortError

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DomException

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Error

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for HierarchyRequestError

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for IndexSizeError

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for InvalidAccessError

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for InvalidCharacterError

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for InvalidStateError

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for NotFoundError

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for NotSupportedError

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for SecurityError

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for SyntaxError

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TypeError

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for AuxClickEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for BeforeUnloadEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for BlurEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ClickEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ContextMenuEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DataTransfer

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DataTransferItem

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DataTransferItemList

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DoubleClickEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DragDropEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DragEndEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DragEnterEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DragEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DragExitEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DragLeaveEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DragOverEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DragRelatedEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DragStartEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for FocusEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for FullscreenChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for GamepadConnectedEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for GamepadDisconnectedEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for GotPointerCaptureEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for HashChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for InputEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for KeyDownEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for KeyPressEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for KeyUpEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for LoadEndEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for LoadStartEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for LostPointerCaptureEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for MouseDownEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for MouseEnterEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for MouseLeaveEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for MouseMoveEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for MouseOutEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for MouseOverEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for MouseUpEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for MouseWheelEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for PointerCancelEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for PointerDownEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for PointerEnterEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for PointerLeaveEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for PointerLockChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for PointerLockErrorEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for PointerMoveEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for PointerOutEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for PointerOverEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for PointerUpEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for PopStateEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ProgressAbortEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ProgressErrorEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ProgressEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ProgressLoadEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ReadyStateChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ResizeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ResourceAbortEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ResourceErrorEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ResourceLoadEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ScrollEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for SelectionChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for SlotChangeEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for SocketCloseEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for SocketErrorEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for SocketMessageEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for SocketOpenEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for SubmitEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TouchCancel

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TouchEnd

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TouchEnter

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TouchEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TouchLeave

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TouchMove

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TouchStart

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for UnloadEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for CanvasElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ImageElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for InputElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for OptionElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for SelectElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for SlotElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TemplateElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TextAreaElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ArrayBuffer

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Blob

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for CanvasGradient

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for CanvasPattern

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for CanvasRenderingContext2d

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Date

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Document

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for DocumentFragment

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Element

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for EventTarget

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for File

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for FileList

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for FileReader

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for FormData

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Gamepad

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for GamepadButton

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for History

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for HtmlCollection

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for HtmlElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ImageData

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Location

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for MutationObserver

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Node

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for NodeList

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Rect

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Selection

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for ShadowRoot

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Storage

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for StringMap

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TextMetrics

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TextNode

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for TokenList

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Touch

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for WebSocket

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for Window

Source§

type Error = ConversionError

Source§

impl TryFrom<Reference> for XmlHttpRequest

Source§

type Error = ConversionError

Source§

impl TryFrom<Symbol> for Value

Source§

impl TryFrom<Undefined> for Value

Source§

impl TryFrom<AbortError> for Reference

Source§

impl TryFrom<DomException> for Reference

Source§

impl TryFrom<DomException> for AbortError

Source§

type Error = ConversionError

Source§

impl TryFrom<DomException> for HierarchyRequestError

Source§

type Error = ConversionError

Source§

impl TryFrom<DomException> for IndexSizeError

Source§

type Error = ConversionError

Source§

impl TryFrom<DomException> for InvalidAccessError

Source§

type Error = ConversionError

Source§

impl TryFrom<DomException> for InvalidCharacterError

Source§

type Error = ConversionError

Source§

impl TryFrom<DomException> for InvalidStateError

Source§

type Error = ConversionError

Source§

impl TryFrom<DomException> for NotFoundError

Source§

type Error = ConversionError

Source§

impl TryFrom<DomException> for NotSupportedError

Source§

type Error = ConversionError

Source§

impl TryFrom<DomException> for SecurityError

Source§

type Error = ConversionError

Source§

impl TryFrom<DomException> for SyntaxError

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for Reference

Source§

impl TryFrom<Error> for AbortError

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for DomException

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for HierarchyRequestError

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for IndexSizeError

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for InvalidAccessError

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for InvalidCharacterError

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for InvalidStateError

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for NotFoundError

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for NotSupportedError

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for SecurityError

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for SyntaxError

Source§

type Error = ConversionError

Source§

impl TryFrom<Error> for TypeError

Source§

type Error = ConversionError

Source§

impl TryFrom<HierarchyRequestError> for Reference

Source§

impl TryFrom<IndexSizeError> for Reference

Source§

impl TryFrom<InvalidAccessError> for Reference

Source§

impl TryFrom<InvalidCharacterError> for Reference

Source§

impl TryFrom<InvalidStateError> for Reference

Source§

impl TryFrom<NotFoundError> for Reference

Source§

impl TryFrom<NotSupportedError> for Reference

Source§

impl TryFrom<SecurityError> for Reference

Source§

impl TryFrom<SyntaxError> for Reference

Source§

impl TryFrom<TypeError> for Reference

Source§

impl TryFrom<AuxClickEvent> for Reference

Source§

impl TryFrom<BeforeUnloadEvent> for Reference

Source§

impl TryFrom<BlurEvent> for Reference

Source§

impl TryFrom<ChangeEvent> for Reference

Source§

impl TryFrom<ClickEvent> for Reference

Source§

impl TryFrom<ContextMenuEvent> for Reference

Source§

impl TryFrom<DataTransfer> for Reference

Source§

impl TryFrom<DataTransferItem> for Reference

Source§

impl TryFrom<DataTransferItemList> for Reference

Source§

impl TryFrom<DoubleClickEvent> for Reference

Source§

impl TryFrom<DragDropEvent> for Reference

Source§

impl TryFrom<DragEndEvent> for Reference

Source§

impl TryFrom<DragEnterEvent> for Reference

Source§

impl TryFrom<DragEvent> for Reference

Source§

impl TryFrom<DragExitEvent> for Reference

Source§

impl TryFrom<DragLeaveEvent> for Reference

Source§

impl TryFrom<DragOverEvent> for Reference

Source§

impl TryFrom<DragRelatedEvent> for Reference

Source§

impl TryFrom<DragRelatedEvent> for DragDropEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<DragRelatedEvent> for DragEndEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<DragRelatedEvent> for DragEnterEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<DragRelatedEvent> for DragEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<DragRelatedEvent> for DragExitEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<DragRelatedEvent> for DragLeaveEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<DragRelatedEvent> for DragOverEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<DragRelatedEvent> for DragStartEvent

Source§

type Error = ConversionError

Source§

impl TryFrom<DragStartEvent> for Reference

Source§

impl TryFrom<FocusEvent> for Reference

Source§

impl TryFrom<FullscreenChangeEvent> for Reference

Source§

impl TryFrom<GamepadConnectedEvent> for Reference

Source§

impl TryFrom<GamepadDisconnectedEvent> for Reference

Source§

impl TryFrom<GotPointerCaptureEvent> for Reference

Source§

impl TryFrom<HashChangeEvent> for Reference

Source§

impl TryFrom<InputEvent> for Reference

Source§

impl TryFrom<KeyDownEvent> for Reference

Source§

impl TryFrom<KeyPressEvent> for Reference

Source§

impl TryFrom<KeyUpEvent> for Reference

Source§

impl TryFrom<LoadEndEvent> for Reference

Source§

impl TryFrom<LoadStartEvent> for Reference

Source§

impl TryFrom<LostPointerCaptureEvent> for Reference

Source§

impl TryFrom<MouseDownEvent> for Reference

Source§

impl TryFrom<MouseEnterEvent> for Reference

Source§

impl TryFrom<MouseLeaveEvent> for Reference

Source§

impl TryFrom<MouseMoveEvent> for Reference

Source§

impl TryFrom<MouseOutEvent> for Reference

Source§

impl TryFrom<MouseOverEvent> for Reference

Source§

impl TryFrom<MouseUpEvent> for Reference

Source§

impl TryFrom<MouseWheelEvent> for Reference

Source§

impl TryFrom<PointerCancelEvent> for Reference

Source§

impl TryFrom<PointerDownEvent> for Reference

Source§

impl TryFrom<PointerEnterEvent> for Reference

Source§

impl TryFrom<PointerLeaveEvent> for Reference

Source§

impl TryFrom<PointerLockChangeEvent> for Reference

Source§

impl TryFrom<PointerLockErrorEvent> for Reference

Source§

impl TryFrom<PointerMoveEvent> for Reference

Source§

impl TryFrom<PointerOutEvent> for Reference

Source§

impl TryFrom<PointerOverEvent> for Reference

Source§

impl TryFrom<PointerUpEvent> for Reference

Source§

impl TryFrom<PopStateEvent> for Reference

Source§

impl TryFrom<ProgressAbortEvent> for Reference

Source§

impl TryFrom<ProgressErrorEvent> for Reference

Source§

impl TryFrom<ProgressEvent> for Reference

Source§

impl TryFrom<ProgressLoadEvent> for Reference

Source§

impl TryFrom<ReadyStateChangeEvent> for Reference

Source§

impl TryFrom<ResizeEvent> for Reference

Source§

impl TryFrom<ResourceAbortEvent> for Reference

Source§

impl TryFrom<ResourceErrorEvent> for Reference

Source§

impl TryFrom<ResourceLoadEvent> for Reference

Source§

impl TryFrom<ScrollEvent> for Reference

Source§

impl TryFrom<SelectionChangeEvent> for Reference

Source§

impl TryFrom<SlotChangeEvent> for Reference

Source§

impl TryFrom<SocketCloseEvent> for Reference

Source§

impl TryFrom<SocketErrorEvent> for Reference

Source§

impl TryFrom<SocketMessageEvent> for Reference

Source§

impl TryFrom<SocketOpenEvent> for Reference

Source§

impl TryFrom<SubmitEvent> for Reference

Source§

impl TryFrom<TouchCancel> for Reference

Source§

impl TryFrom<TouchEnd> for Reference

Source§

impl TryFrom<TouchEnter> for Reference

Source§

impl TryFrom<TouchEvent> for Reference

Source§

impl TryFrom<TouchEvent> for TouchCancel

Source§

type Error = ConversionError

Source§

impl TryFrom<TouchEvent> for TouchEnd

Source§

type Error = ConversionError

Source§

impl TryFrom<TouchEvent> for TouchEnter

Source§

type Error = ConversionError

Source§

impl TryFrom<TouchEvent> for TouchLeave

Source§

type Error = ConversionError

Source§

impl TryFrom<TouchEvent> for TouchMove

Source§

type Error = ConversionError

Source§

impl TryFrom<TouchEvent> for TouchStart

Source§

type Error = ConversionError

Source§

impl TryFrom<TouchLeave> for Reference

Source§

impl TryFrom<TouchMove> for Reference

Source§

impl TryFrom<TouchStart> for Reference

Source§

impl TryFrom<UnloadEvent> for Reference

Source§

impl TryFrom<CanvasElement> for Reference

Source§

impl TryFrom<ImageElement> for Reference

Source§

impl TryFrom<InputElement> for Reference

Source§

impl TryFrom<OptionElement> for Reference

Source§

impl TryFrom<SelectElement> for Reference

Source§

impl TryFrom<SlotElement> for Reference

Source§

impl TryFrom<TemplateElement> for Reference

Source§

impl TryFrom<TextAreaElement> for Reference

Source§

impl TryFrom<ArrayBuffer> for Reference

Source§

impl TryFrom<Blob> for Reference

Source§

impl TryFrom<Blob> for File

Source§

type Error = ConversionError

Source§

impl TryFrom<CanvasGradient> for Reference

Source§

impl TryFrom<CanvasPattern> for Reference

Source§

impl TryFrom<CanvasRenderingContext2d> for Reference

Source§

impl TryFrom<Date> for Reference

Source§

impl TryFrom<Document> for Reference

Source§

impl TryFrom<DocumentFragment> for Reference

Source§

impl TryFrom<DocumentFragment> for ShadowRoot

Source§

type Error = ConversionError

Source§

impl TryFrom<Element> for Reference

Source§

impl TryFrom<Element> for CanvasElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Element> for ImageElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Element> for InputElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Element> for OptionElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Element> for SelectElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Element> for SlotElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Element> for TemplateElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Element> for TextAreaElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Element> for HtmlElement

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for Reference

Source§

impl TryFrom<EventTarget> for CanvasElement

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for ImageElement

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for InputElement

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for OptionElement

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for SelectElement

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for SlotElement

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for TemplateElement

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for TextAreaElement

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for Document

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for DocumentFragment

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for Element

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for FileReader

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for HtmlElement

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for Node

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for ShadowRoot

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for TextNode

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for WebSocket

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for Window

Source§

type Error = ConversionError

Source§

impl TryFrom<EventTarget> for XmlHttpRequest

Source§

type Error = ConversionError

Source§

impl TryFrom<File> for Reference

Source§

impl TryFrom<FileList> for Reference

Source§

impl TryFrom<FileReader> for Reference

Source§

impl TryFrom<FormData> for Reference

Source§

impl TryFrom<Gamepad> for Reference

Source§

impl TryFrom<GamepadButton> for Reference

Source§

impl TryFrom<History> for Reference

Source§

impl TryFrom<HtmlCollection> for Reference

Source§

impl TryFrom<HtmlElement> for Reference

Source§

impl TryFrom<HtmlElement> for CanvasElement

Source§

type Error = ConversionError

Source§

impl TryFrom<HtmlElement> for ImageElement

Source§

type Error = ConversionError

Source§

impl TryFrom<HtmlElement> for InputElement

Source§

type Error = ConversionError

Source§

impl TryFrom<HtmlElement> for OptionElement

Source§

type Error = ConversionError

Source§

impl TryFrom<HtmlElement> for SelectElement

Source§

type Error = ConversionError

Source§

impl TryFrom<HtmlElement> for SlotElement

Source§

type Error = ConversionError

Source§

impl TryFrom<HtmlElement> for TemplateElement

Source§

type Error = ConversionError

Source§

impl TryFrom<HtmlElement> for TextAreaElement

Source§

type Error = ConversionError

Source§

impl TryFrom<ImageData> for Reference

Source§

impl TryFrom<Location> for Reference

Source§

impl TryFrom<MutationObserver> for Reference

Source§

impl TryFrom<Node> for Reference

Source§

impl TryFrom<Node> for CanvasElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for ImageElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for InputElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for OptionElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for SelectElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for SlotElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for TemplateElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for TextAreaElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for Document

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for DocumentFragment

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for Element

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for HtmlElement

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for ShadowRoot

Source§

type Error = ConversionError

Source§

impl TryFrom<Node> for TextNode

Source§

type Error = ConversionError

Source§

impl TryFrom<NodeList> for Reference

Source§

impl TryFrom<Rect> for Reference

Source§

impl TryFrom<Selection> for Reference

Source§

impl TryFrom<ShadowRoot> for Reference

Source§

impl TryFrom<Storage> for Reference

Source§

impl TryFrom<StringMap> for Reference

Source§

impl TryFrom<TextMetrics> for Reference

Source§

impl TryFrom<TextNode> for Reference

Source§

impl TryFrom<TokenList> for Reference

Source§

impl TryFrom<Touch> for Reference

Source§

impl TryFrom<WebSocket> for Reference

Source§

impl TryFrom<Window> for Reference

Source§

impl TryFrom<XmlHttpRequest> for Reference

Source§

impl TryFrom<String> for Value

Source§

impl<'_r> TryFrom<&'_r Value> for Array

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Object

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for AbortError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DomException

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Error

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for HierarchyRequestError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for IndexSizeError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for InvalidAccessError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for InvalidCharacterError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for InvalidStateError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for NotFoundError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for NotSupportedError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for SecurityError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for SyntaxError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TypeError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for AuxClickEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for BeforeUnloadEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for BlurEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ClickEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ContextMenuEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DataTransfer

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DataTransferItem

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DataTransferItemList

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DoubleClickEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DragDropEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DragEndEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DragEnterEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DragEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DragExitEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DragLeaveEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DragOverEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DragRelatedEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DragStartEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for FocusEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for FullscreenChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for GamepadConnectedEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for GamepadDisconnectedEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for GotPointerCaptureEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for HashChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for InputEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for KeyDownEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for KeyPressEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for KeyUpEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for LoadEndEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for LoadStartEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for LostPointerCaptureEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for MouseDownEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for MouseEnterEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for MouseLeaveEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for MouseMoveEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for MouseOutEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for MouseOverEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for MouseUpEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for MouseWheelEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for PointerCancelEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for PointerDownEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for PointerEnterEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for PointerLeaveEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for PointerLockChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for PointerLockErrorEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for PointerMoveEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for PointerOutEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for PointerOverEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for PointerUpEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for PopStateEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ProgressAbortEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ProgressErrorEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ProgressEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ProgressLoadEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ReadyStateChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ResizeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ResourceAbortEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ResourceErrorEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ResourceLoadEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ScrollEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for SelectionChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for SlotChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for SocketCloseEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for SocketErrorEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for SocketMessageEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for SocketOpenEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for SubmitEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TouchCancel

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TouchEnd

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TouchEnter

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TouchEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TouchLeave

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TouchMove

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TouchStart

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for UnloadEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for CanvasElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ImageElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for InputElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for OptionElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for SelectElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for SlotElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TemplateElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TextAreaElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ArrayBuffer

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Blob

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for CanvasGradient

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for CanvasPattern

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for CanvasRenderingContext2d

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Date

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Document

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for DocumentFragment

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Element

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for EventTarget

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for File

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for FileList

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for FileReader

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for FormData

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Gamepad

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for GamepadButton

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for History

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for HtmlCollection

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for HtmlElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ImageData

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Location

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for MutationObserver

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Node

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for NodeList

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Rect

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Selection

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for ShadowRoot

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Storage

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for StringMap

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TextMetrics

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TextNode

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for TokenList

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Touch

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for WebSocket

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for Window

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Value> for XmlHttpRequest

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Array

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Object

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for AbortError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DomException

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Error

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for HierarchyRequestError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for IndexSizeError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for InvalidAccessError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for InvalidCharacterError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for InvalidStateError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for NotFoundError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for NotSupportedError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for SecurityError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for SyntaxError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TypeError

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for AuxClickEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for BeforeUnloadEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for BlurEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ClickEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ContextMenuEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DataTransfer

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DataTransferItem

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DataTransferItemList

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DoubleClickEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DragDropEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DragEndEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DragEnterEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DragEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DragExitEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DragLeaveEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DragOverEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DragRelatedEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DragStartEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for FocusEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for FullscreenChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for GamepadConnectedEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for GamepadDisconnectedEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for GotPointerCaptureEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for HashChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for InputEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for KeyDownEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for KeyPressEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for KeyUpEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for LoadEndEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for LoadStartEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for LostPointerCaptureEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for MouseDownEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for MouseEnterEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for MouseLeaveEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for MouseMoveEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for MouseOutEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for MouseOverEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for MouseUpEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for MouseWheelEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for PointerCancelEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for PointerDownEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for PointerEnterEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for PointerLeaveEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for PointerLockChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for PointerLockErrorEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for PointerMoveEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for PointerOutEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for PointerOverEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for PointerUpEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for PopStateEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ProgressAbortEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ProgressErrorEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ProgressEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ProgressLoadEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ReadyStateChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ResizeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ResourceAbortEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ResourceErrorEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ResourceLoadEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ScrollEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for SelectionChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for SlotChangeEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for SocketCloseEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for SocketErrorEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for SocketMessageEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for SocketOpenEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for SubmitEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TouchCancel

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TouchEnd

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TouchEnter

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TouchEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TouchLeave

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TouchMove

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TouchStart

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for UnloadEvent

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for CanvasElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ImageElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for InputElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for OptionElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for SelectElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for SlotElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TemplateElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TextAreaElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ArrayBuffer

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Blob

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for CanvasGradient

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for CanvasPattern

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for CanvasRenderingContext2d

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Date

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Document

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for DocumentFragment

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Element

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for EventTarget

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for File

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for FileList

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for FileReader

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for FormData

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Gamepad

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for GamepadButton

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for History

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for HtmlCollection

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for HtmlElement

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ImageData

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Location

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for MutationObserver

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Node

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for NodeList

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Rect

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Selection

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for ShadowRoot

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Storage

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for StringMap

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TextMetrics

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TextNode

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for TokenList

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Touch

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for WebSocket

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for Window

Source§

type Error = ConversionError

Source§

impl<'_r> TryFrom<&'_r Reference> for XmlHttpRequest

Source§

type Error = ConversionError

Source§

impl<'_r, T: ArrayKind> TryFrom<&'_r Value> for TypedArray<T>

Source§

type Error = ConversionError

Source§

impl<'_r, T: ArrayKind> TryFrom<&'_r Reference> for TypedArray<T>

Source§

type Error = ConversionError

Source§

impl<'a> TryFrom<&'a Value> for &'a Reference

Source§

type Error = ConversionError

Source§

impl<'a> TryFrom<&'a Value> for &'a Symbol

Source§

type Error = ConversionError

Source§

impl<'a> TryFrom<&'a bool> for Value

Source§

impl<'a> TryFrom<&'a char> for Value

Source§

impl<'a> TryFrom<&'a str> for Value

Source§

impl<'a> TryFrom<&'a Null> for Value

Source§

impl<'a> TryFrom<&'a Reference> for &'a Reference

Source§

impl<'a> TryFrom<&'a Undefined> for Value

Source§

impl<'a> TryFrom<&'a String> for Value

Source§

impl<'a> TryFrom<&'a mut bool> for Value

Source§

impl<'a> TryFrom<&'a mut char> for Value

Source§

impl<'a> TryFrom<&'a mut str> for Value

Source§

impl<'a> TryFrom<&'a mut Null> for Value

Source§

impl<'a> TryFrom<&'a mut Undefined> for Value

Source§

impl<'a> TryFrom<&'a mut String> for Value

Source§

impl<'a, K, V> TryFrom<&'a BTreeMap<K, V>> for Value
where K: AsRef<str>, V: JsSerialize,

Source§

impl<'a, K, V> TryFrom<&'a BTreeMap<K, V>> for Object
where K: AsRef<str>, V: JsSerialize,

Source§

impl<'a, K, V> TryFrom<&'a HashMap<K, V>> for Value
where K: AsRef<str> + Eq + Hash, V: JsSerialize,

Source§

impl<'a, K, V> TryFrom<&'a HashMap<K, V>> for Object
where K: AsRef<str> + Eq + Hash, V: JsSerialize,

Source§

impl<'a, K, V> TryFrom<&'a mut BTreeMap<K, V>> for Value
where K: AsRef<str>, V: JsSerialize,

Source§

impl<'a, K, V> TryFrom<&'a mut BTreeMap<K, V>> for Object
where K: AsRef<str>, V: JsSerialize,

Source§

impl<'a, K, V> TryFrom<&'a mut HashMap<K, V>> for Value
where K: AsRef<str> + Eq + Hash, V: JsSerialize,

Source§

impl<'a, K, V> TryFrom<&'a mut HashMap<K, V>> for Object
where K: AsRef<str> + Eq + Hash, V: JsSerialize,

Source§

impl<'a, T> TryFrom<&'a [T]> for Value
where T: JsSerialize,

Source§

impl<'a, T> TryFrom<&'a [T]> for Array
where T: JsSerialize,

Source§

impl<'a, T> TryFrom<&'a Vec<T>> for Value
where T: JsSerialize,

Source§

impl<'a, T> TryFrom<&'a Vec<T>> for Array
where T: JsSerialize,

Source§

impl<'a, T> TryFrom<&'a mut [T]> for Value
where T: JsSerialize,

Source§

impl<'a, T> TryFrom<&'a mut [T]> for Array
where T: JsSerialize,

Source§

impl<'a, T> TryFrom<&'a mut Vec<T>> for Value
where T: JsSerialize,

Source§

impl<'a, T> TryFrom<&'a mut Vec<T>> for Array
where T: JsSerialize,

Source§

impl<'a, T: Serialize> TryFrom<&'a Serde<T>> for Value

Source§

impl<'a, T: Serialize> TryFrom<&'a mut Serde<T>> for Value

Source§

impl<'de, T: Deserialize<'de>> TryFrom<Value> for Serde<T>

Source§

impl<K, V> TryFrom<BTreeMap<K, V>> for Value
where K: AsRef<str>, V: JsSerialize,

Source§

impl<K, V> TryFrom<BTreeMap<K, V>> for Object
where K: AsRef<str>, V: JsSerialize,

Source§

impl<K, V> TryFrom<HashMap<K, V>> for Value
where K: AsRef<str> + Eq + Hash, V: JsSerialize,

Source§

impl<K, V> TryFrom<HashMap<K, V>> for Object
where K: AsRef<str> + Eq + Hash, V: JsSerialize,

Source§

impl<T> TryFrom<Vec<T>> for Value
where T: JsSerialize,

Source§

impl<T> TryFrom<Vec<T>> for Array
where T: JsSerialize,

Source§

impl<T: Serialize> TryFrom<Serde<T>> for Value

Source§

impl<T: ArrayKind> TryFrom<Value> for TypedArray<T>

Source§

type Error = ConversionError

Source§

impl<T: ArrayKind> TryFrom<Reference> for TypedArray<T>

Source§

type Error = ConversionError

Source§

impl<T: ArrayKind> TryFrom<TypedArray<T>> for Reference