Enum Either6

Source
pub enum Either6<A, B, C, D, E, F> {
    A(A),
    B(B),
    C(C),
    D(D),
    E(E),
    F(F),
}

Variants§

§

A(A)

§

B(B)

§

C(C)

§

D(D)

§

E(E)

§

F(F)

Trait Implementations§

Source§

impl<A, B, C, D, E, F> IntoHtml for Either6<A, B, C, D, E, F>
where A: IntoHtml, B: IntoHtml, C: IntoHtml, D: IntoHtml, E: IntoHtml, F: IntoHtml,

Source§

fn into_html(self) -> impl IntoHtml

Converts this value into HTML by producing a type that implements IntoHtml. Read more
Source§

fn escape_and_write(self, buf: &mut Buffer)

Writes the HTML into the provided String.
Source§

fn size_hint(&self) -> usize

Source§

fn into_string(self) -> String
where Self: Sized,

Allocates a new String containing the HTML.

Auto Trait Implementations§

§

impl<A, B, C, D, E, F> Freeze for Either6<A, B, C, D, E, F>
where A: Freeze, B: Freeze, C: Freeze, D: Freeze, E: Freeze, F: Freeze,

§

impl<A, B, C, D, E, F> RefUnwindSafe for Either6<A, B, C, D, E, F>

§

impl<A, B, C, D, E, F> Send for Either6<A, B, C, D, E, F>
where A: Send, B: Send, C: Send, D: Send, E: Send, F: Send,

§

impl<A, B, C, D, E, F> Sync for Either6<A, B, C, D, E, F>
where A: Sync, B: Sync, C: Sync, D: Sync, E: Sync, F: Sync,

§

impl<A, B, C, D, E, F> Unpin for Either6<A, B, C, D, E, F>
where A: Unpin, B: Unpin, C: Unpin, D: Unpin, E: Unpin, F: Unpin,

§

impl<A, B, C, D, E, F> UnwindSafe for Either6<A, B, C, D, E, F>

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> 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<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.