Struct Tag

Source
pub struct Tag<'t, A: Attributes, I: Html, const SILENT: bool> { /* private fields */ }
Expand description

Represents a tag.

TODO better docs

Implementations§

Source§

impl<'n, A: Attributes, I: Html, const SILENT: bool> Tag<'n, A, I, SILENT>

Source

pub fn child<C: Html>(self, child: C) -> Tag<'n, A, Sum<I, C>, SILENT>

Adds a child to the tag.

§Arguments
  • child - The child to add.
§Example
use write_html::*;
use std::fmt::Write;

let mut s = String::new();
s.write_html(tags::div(Empty, Empty)
    .child(tags::p(Empty, Empty)
        .child("Hello, world!".as_html())
    )
).unwrap();
assert_eq!(s, "<div><p>Hello, world!</p></div>");
Source

pub fn attributes<B: Attributes>( self, attributes: B, ) -> Tag<'n, Sum<A, B>, I, SILENT>

Adds multiple attributes to the tag.

§Arguments
  • attributes - The attributes to add.
§Example
use write_html::*;
use std::fmt::Write;

let mut s = String::new();
s.write_html(tags::div(Empty, Empty)
    .attributes([
        ("class", "container"),
        ("id", "main"),
    ])
).unwrap();
assert_eq!(s, "<div class=\"container\" id=\"main\"></div>");
Source

pub fn attr<Name: AttributeName, Value: AttributeValue>( self, name: Name, value: Value, ) -> Tag<'n, Sum<A, [(Name, Value); 1]>, I, SILENT>

Adds an attribute to the tag.

Trait Implementations§

Source§

impl<'t, A: Clone + Attributes, I: Clone + Html, const SILENT: bool> Clone for Tag<'t, A, I, SILENT>

Source§

fn clone(&self) -> Tag<'t, A, I, SILENT>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'t, A: Debug + Attributes, I: Debug + Html, const SILENT: bool> Debug for Tag<'t, A, I, SILENT>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'t, A: Hash + Attributes, I: Hash + Html, const SILENT: bool> Hash for Tag<'t, A, I, SILENT>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<'n, A: Attributes, I: Html, const SILENT: bool> Html for Tag<'n, A, I, SILENT>

Source§

fn write_html(self, env: &mut impl HtmlEnv) -> Result

Writes the HTML representation of self to w. Read more
Source§

fn is_unit(&self) -> bool

Tells whether self is a unit value, meaning that it is not written.
Source§

impl<'t, A: Ord + Attributes, I: Ord + Html, const SILENT: bool> Ord for Tag<'t, A, I, SILENT>

Source§

fn cmp(&self, other: &Tag<'t, A, I, SILENT>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<'t, A: PartialEq + Attributes, I: PartialEq + Html, const SILENT: bool> PartialEq for Tag<'t, A, I, SILENT>

Source§

fn eq(&self, other: &Tag<'t, A, I, SILENT>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'t, A: PartialOrd + Attributes, I: PartialOrd + Html, const SILENT: bool> PartialOrd for Tag<'t, A, I, SILENT>

Source§

fn partial_cmp(&self, other: &Tag<'t, A, I, SILENT>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<'t, A: Copy + Attributes, I: Copy + Html, const SILENT: bool> Copy for Tag<'t, A, I, SILENT>

Source§

impl<'t, A: Eq + Attributes, I: Eq + Html, const SILENT: bool> Eq for Tag<'t, A, I, SILENT>

Source§

impl<'t, A: Attributes, I: Html, const SILENT: bool> StructuralPartialEq for Tag<'t, A, I, SILENT>

Auto Trait Implementations§

§

impl<'t, A, I, const SILENT: bool> Freeze for Tag<'t, A, I, SILENT>
where A: Freeze, I: Freeze,

§

impl<'t, A, I, const SILENT: bool> RefUnwindSafe for Tag<'t, A, I, SILENT>

§

impl<'t, A, I, const SILENT: bool> Send for Tag<'t, A, I, SILENT>
where A: Send, I: Send,

§

impl<'t, A, I, const SILENT: bool> Sync for Tag<'t, A, I, SILENT>
where A: Sync, I: Sync,

§

impl<'t, A, I, const SILENT: bool> Unpin for Tag<'t, A, I, SILENT>
where A: Unpin, I: Unpin,

§

impl<'t, A, I, const SILENT: bool> UnwindSafe for Tag<'t, A, I, SILENT>
where A: UnwindSafe, I: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<H> ToHtmlString for H
where H: Html,

Source§

fn to_html_string(self) -> Result<String, Error>

Converts self into an HTML string.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.