Enum ress::tokens::prelude::Template[][src]

pub enum Template<T> {
    NoSub(TemplateLiteral<T>),
    Head(TemplateLiteral<T>),
    Middle(TemplateLiteral<T>),
    Tail(TemplateLiteral<T>),
}

A template string

These include strings that are wrapped in back ticks () which allows for interpolating any js expression between ${and}`

Variants

NoSub(TemplateLiteral<T>)
Middle(TemplateLiteral<T>)

Implementations

impl<T> Template<T>[src]

pub fn no_sub_template(content: T, oct: bool, uni: bool, hex: bool) -> Self[src]

pub fn template_head(content: T, oct: bool, uni: bool, hex: bool) -> Self[src]

pub fn template_middle(content: T, oct: bool, uni: bool, hex: bool) -> Self[src]

pub fn template_tail(content: T, oct: bool, uni: bool, hex: bool) -> Self[src]

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

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

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

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

Trait Implementations

impl<T: Clone> Clone for Template<T>[src]

impl<T: Debug> Debug for Template<T>[src]

impl<T: PartialEq> PartialEq<Template<T>> for Template<T>[src]

impl<T> StructuralPartialEq for Template<T>[src]

impl<T> ToString for Template<T> where
    T: AsRef<str>, 
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Template<T> where
    T: RefUnwindSafe

impl<T> Send for Template<T> where
    T: Send

impl<T> Sync for Template<T> where
    T: Sync

impl<T> Unpin for Template<T> where
    T: Unpin

impl<T> UnwindSafe for Template<T> where
    T: UnwindSafe

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.