Struct html_builder::Node
source · [−]pub struct Node<'a> { /* private fields */ }
Expand description
An HTML element.
Implementations
Trait Implementations
sourceimpl<'a> Html5 for Node<'a>
impl<'a> Html5 for Node<'a>
sourcefn address(&mut self) -> Node<'_>
fn address(&mut self) -> Node<'_>
Defines contact information for the author/owner of a document
sourcefn base(&mut self) -> Void<'_>
fn base(&mut self) -> Void<'_>
Specifies the base URL/target for all relative URLs in a document
sourcefn bdi(&mut self) -> Node<'_>
fn bdi(&mut self) -> Node<'_>
Isolates a part of text that might be formatted in a different direction from other text outside it
sourcefn blockquote(&mut self) -> Node<'_>
fn blockquote(&mut self) -> Node<'_>
Defines a section that is quoted from another source
Defines a clickable button
sourcefn canvas(&mut self) -> Node<'_>
fn canvas(&mut self) -> Node<'_>
Used to draw graphics, on the fly, via scripting (usually JavaScript)
sourcefn colgroup(&mut self) -> Node<'_>
fn colgroup(&mut self) -> Node<'_>
Specifies a group of one or more columns in a table for formatting
sourcefn figcaption(&mut self) -> Node<'_>
fn figcaption(&mut self) -> Node<'_>
Defines a caption for a
Defines a footer for a document or section
sourcefn link(&mut self) -> Void<'_>
fn link(&mut self) -> Void<'_>
Defines the relationship between a document and an external resource (most used to link to style sheets)
Defines navigation links
sourcefn noscript(&mut self) -> Node<'_>
fn noscript(&mut self) -> Node<'_>
Defines an alternate content for users that do not support client-side scripts
sourcefn rp(&mut self) -> Node<'_>
fn rp(&mut self) -> Node<'_>
Defines what to show in browsers that do not support ruby annotations
sourcefn rt(&mut self) -> Node<'_>
fn rt(&mut self) -> Node<'_>
Defines an explanation/pronunciation of characters (for East Asian typography)
sourcefn template(&mut self) -> Node<'_>
fn template(&mut self) -> Node<'_>
Defines a container for content that should be hidden when the page loads
Auto Trait Implementations
impl<'a> RefUnwindSafe for Node<'a>
impl<'a> Send for Node<'a>
impl<'a> Sync for Node<'a>
impl<'a> Unpin for Node<'a>
impl<'a> UnwindSafe for Node<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more