Enum virtual_view::RawView
[−]
[src]
pub enum RawView {
Text(String),
Data {
kind: String,
key: Option<String>,
props: Map<String, Value>,
children: Vec<RawView>,
},
}Variants
Text(String)DataFields of Data
kind: String | |
key: Option<String> | |
props: Map<String, Value> | |
children: Vec<RawView> |
Methods
impl RawView[src]
Trait Implementations
impl Debug for RawView[src]
impl Clone for RawView[src]
fn clone(&self) -> RawView[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for RawView[src]
fn eq(&self, __arg_0: &RawView) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &RawView) -> bool[src]
This method tests for !=.