[][src]Struct squark::View

pub struct View<A> { /* fields omitted */ }

Methods

impl<A> View<A>[src]

pub fn new(
    name: String,
    attributes: Vec<(String, AttributeValue)>,
    handlers: Vec<(String, (String, Box<dyn Fn(HandlerArg) -> Option<A>>))>,
    children: Vec<Child<A>>
) -> View<A>
[src]

pub fn text(s: String) -> View<A>[src]

pub fn null() -> View<A>[src]

Trait Implementations

impl<A> From<()> for View<A>[src]

impl<A> From<String> for View<A>[src]

impl<'a, A> From<&'a str> for View<A>[src]

impl<A, T> From<Option<T>> for View<A> where
    T: Into<View<A>>, 
[src]

impl<A> FromIterator<View<A>> for Child<A>[src]

Auto Trait Implementations

impl<A> !Send for View<A>

impl<A> !Sync for View<A>

Blanket Implementations

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

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]