Enum virtual_view::ViewKind [] [src]

pub enum ViewKind {
    String(String),
    Component(Arc<Component>),
}

Variants

Methods

impl ViewKind
[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Clone for ViewKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Sync for ViewKind
[src]

impl Send for ViewKind
[src]

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

[src]

Performs the conversion.

impl From<String> for ViewKind
[src]

[src]

Performs the conversion.

impl From<Arc<Component>> for ViewKind
[src]

[src]

Performs the conversion.

impl<T> From<T> for ViewKind where
    T: Component
[src]

[src]

Performs the conversion.

impl PartialEq for ViewKind
[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 ViewKind
[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 Debug for ViewKind
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for ViewKind
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations