[][src]Struct paige::Page

pub struct Page {
    pub content: Vec<El>,
}

The Page struct. Stores a list of nested HTML elements.

Fields

content: Vec<El>

Methods

impl Page[src]

pub fn new(content: &[El]) -> Self[src]

Returns a new Page. Takes a slice of El as input.

pub fn add(self, child: El) -> Self[src]

Pushes an El onto content field vec.

pub fn id_find(&mut self, id: &str) -> Option<&mut El>[src]

Allows for finding a child element by its id attribute.

pub fn format(&self, make_pretty: bool) -> String[src]

Formats the Page for display or storage. Automatically prepends ' to the beginning of the file.

Trait Implementations

impl Display for Page[src]

Auto Trait Implementations

impl RefUnwindSafe for Page

impl Send for Page

impl Sync for Page

impl Unpin for Page

impl UnwindSafe for Page

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> ToString for T where
    T: Display + ?Sized
[src]

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.