Enum serde_json::ser::CharEscape[][src]

pub enum CharEscape {
    Quote,
    ReverseSolidus,
    Solidus,
    Backspace,
    FormFeed,
    LineFeed,
    CarriageReturn,
    Tab,
    AsciiControl(u8),
}
This is supported on crate feature std only.
Expand description

Represents a character escape code in a type-safe manner.

Variants

Quote

An escaped quote "

ReverseSolidus

An escaped reverse solidus \

Solidus

An escaped solidus /

Backspace

An escaped backspace character (usually escaped as \b)

FormFeed

An escaped form feed character (usually escaped as \f)

LineFeed

An escaped line feed character (usually escaped as \n)

CarriageReturn

An escaped carriage return character (usually escaped as \r)

Tab

An escaped tab character (usually escaped as \t)

AsciiControl

An escaped ASCII plane control character (usually escaped as \u00XX where XX are two hex characters)

Tuple Fields of AsciiControl

0: u8

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.