[][src]Enum viaspf::record::Escape

pub enum Escape {
    Percent,
    Space,
    UrlEncodedSpace,
}

An escape sequence in a macro string.

Variants

Percent

The percent escape sequence.

Space

The space escape sequence.

UrlEncodedSpace

The URL-encoded space escape sequence.

Trait Implementations

impl Clone for Escape[src]

impl Copy for Escape[src]

impl Debug for Escape[src]

impl Display for Escape[src]

impl Eq for Escape[src]

impl From<Escape> for MacroExpand[src]

impl Hash for Escape[src]

impl PartialEq<Escape> for Escape[src]

impl StructuralEq for Escape[src]

impl StructuralPartialEq for Escape[src]

Auto Trait Implementations

impl RefUnwindSafe for Escape

impl Send for Escape

impl Sync for Escape

impl Unpin for Escape

impl UnwindSafe for Escape

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