[][src]Struct hatter::Tag

pub struct Tag {
    pub tag: Box<Stmt>,
    pub id: Box<Stmt>,
    pub classes: Vec<Stmt>,
    pub attrs: Vec<(Stmt, Stmt)>,
    pub body: Vec<Stmt>,
    pub closed: bool,
}

Since HTML tags are a bit more involved than IF statements or variable assignment, they have their own data structure. This is still basically just a Stmt, though.

Fields

tag: Box<Stmt>id: Box<Stmt>classes: Vec<Stmt>attrs: Vec<(Stmt, Stmt)>body: Vec<Stmt>closed: bool

Implementations

impl Tag[src]

pub fn new(tag: Stmt) -> Tag[src]

Create a new tag named tag.

pub fn is_closed(&self) -> bool[src]

Is this a tag?

pub fn close(&mut self)[src]

Mark this tag as .

pub fn set_id(&mut self, id: Stmt)[src]

Set the id= of this tag.

pub fn set_body(&mut self, body: Vec<Stmt>)[src]

Set the BODY of this tag.

pub fn add_class(&mut self, class: Stmt)[src]

Add a css class to this tag.

pub fn add_attr(&mut self, name: Stmt, val: Stmt)[src]

Add an HTML attribute to this tag.

Trait Implementations

impl Clone for Tag[src]

impl Debug for Tag[src]

impl From<Tag> for Stmt[src]

impl PartialEq<Tag> for Tag[src]

Auto Trait Implementations

impl !RefUnwindSafe for Tag

impl !Send for Tag

impl !Sync for Tag

impl Unpin for Tag

impl !UnwindSafe for Tag

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.