Enum virtual_view::Prop [] [src]

pub enum Prop {
    Null,
    Boolean(bool),
    Number(Number),
    String(String),
    Function(Arc<Function>),
    Array(Array),
    Object(Props),
}

Variants

Methods

impl Prop
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Clone for Prop
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Sync for Prop
[src]

impl Send for Prop
[src]

impl<'a> From<&'a Prop> for Prop
[src]

[src]

Performs the conversion.

impl From<()> for Prop
[src]

[src]

Performs the conversion.

impl From<bool> for Prop
[src]

[src]

Performs the conversion.

impl<'a> From<&'a str> for Prop
[src]

[src]

Performs the conversion.

impl From<String> for Prop
[src]

[src]

Performs the conversion.

impl From<u8> for Prop
[src]

[src]

Performs the conversion.

impl From<u16> for Prop
[src]

[src]

Performs the conversion.

impl From<u32> for Prop
[src]

[src]

Performs the conversion.

impl From<u64> for Prop
[src]

[src]

Performs the conversion.

impl From<usize> for Prop
[src]

[src]

Performs the conversion.

impl From<i8> for Prop
[src]

[src]

Performs the conversion.

impl From<i16> for Prop
[src]

[src]

Performs the conversion.

impl From<i32> for Prop
[src]

[src]

Performs the conversion.

impl From<i64> for Prop
[src]

[src]

Performs the conversion.

impl From<isize> for Prop
[src]

[src]

Performs the conversion.

impl From<f32> for Prop
[src]

[src]

Performs the conversion.

impl From<f64> for Prop
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl From<Array> for Prop
[src]

[src]

Performs the conversion.

impl<T> From<FnvHashMap<String, T>> for Prop where
    T: Into<Prop>, 
[src]

[src]

Performs the conversion.

impl From<Props> for Prop
[src]

[src]

Performs the conversion.

impl<F> From<F> for Prop where
    F: 'static + Fn(&mut Props) -> Prop
[src]

[src]

Performs the conversion.

impl From<Value> for Prop
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl Debug for Prop
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for Prop
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for Prop
[src]

impl PartialEq for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<str> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<u8> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<u16> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<u32> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<u64> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<usize> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<i8> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<i16> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<i32> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<i64> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<isize> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<f32> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<f64> for Prop
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Hash for Prop
[src]

[src]

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

1.3.0
[src]

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

Auto Trait Implementations