Enum virtual_view::RawView [] [src]

pub enum RawView {
    Text(String),
    Data {
        kind: String,
        key: Option<String>,
        props: Map<String, Value>,
        children: Vec<RawView>,
    },
}

Variants

Fields of Data

Methods

impl RawView
[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Debug for RawView
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RawView
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for RawView
[src]

[src]

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

[src]

This method tests for !=.

impl Sync for RawView
[src]

impl Send for RawView
[src]

impl<'a> From<&'a View> for RawView
[src]

[src]

Performs the conversion.

impl From<View> for RawView
[src]

[src]

Performs the conversion.

Auto Trait Implementations