[][src]Struct stdweb::Undefined

pub struct Undefined;

A unit type representing JavaScript's undefined.

Trait Implementations

impl JsSerialize for Undefined[src]

impl TryFrom<Undefined> for Value[src]

type Error = Void

The type returned in the event of a conversion error.

impl<'a> TryFrom<&'a Undefined> for Value[src]

type Error = Void

The type returned in the event of a conversion error.

impl<'a> TryFrom<&'a mut Undefined> for Value[src]

type Error = Void

The type returned in the event of a conversion error.

impl TryFrom<Value> for Undefined[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl From<Undefined> for Value[src]

impl<'a> From<&'a Undefined> for Value[src]

impl<'a> From<&'a mut Undefined> for Value[src]

impl Clone for Undefined[src]

impl Copy for Undefined[src]

impl Default for Undefined[src]

impl Eq for Undefined[src]

impl Ord for Undefined[src]

impl PartialEq<Undefined> for Undefined[src]

impl PartialEq<Undefined> for Value[src]

impl<'a> PartialEq<&'a Undefined> for Value[src]

impl<'a> PartialEq<Undefined> for &'a Value[src]

impl PartialEq<Value> for Undefined[src]

impl<'a> PartialEq<&'a Value> for Undefined[src]

impl<'a> PartialEq<Value> for &'a Undefined[src]

impl PartialOrd<Undefined> for Undefined[src]

impl Debug for Undefined[src]

impl Hash for Undefined[src]

impl Serialize for Undefined[src]

impl<'de> Deserialize<'de> for Undefined[src]

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]