Struct stdweb::Undefined[][src]

pub struct Undefined;

A unit type representing JavaScript's undefined.

Trait Implementations

impl Copy for Undefined
[src]

impl Clone for Undefined
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Undefined
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Undefined
[src]

impl PartialOrd for Undefined
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Undefined
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Hash for Undefined
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Default for Undefined
[src]

Returns the "default value" for a type. Read more

impl Debug for Undefined
[src]

Formats the value using the given formatter. Read more

impl From<Undefined> for Value
[src]

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl TryFrom<Undefined> for Value
[src]

The type returned in the event of a conversion error.

Performs the conversion.

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

The type returned in the event of a conversion error.

Performs the conversion.

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

The type returned in the event of a conversion error.

Performs the conversion.

impl PartialEq<Undefined> for Value
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialEq<Value> for Undefined
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl TryFrom<Value> for Undefined
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl JsSerialize for Undefined
[src]

impl Serialize for Undefined
[src]

Serialize this value into the given Serde serializer. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for Undefined

impl Sync for Undefined