pub struct RawHeader<'a>(pub &'a [u8]);
Expand description

A header value.

Provides helper methods for decoding backslash escaped values.

A quote inside a string is represented by the backslash immediately followed by a quote. A backslash inside a string is represented by two adjacent backslashes.

Tuple Fields

0: &'a [u8]

Implementations

Returns the raw byte representation of the header value.

Decodes escaped quotes and backslashes into bytes. Allocates only when the value actually contains escape sequences.

Tries to decode the header as UTF-8. This is guaranteed to succeed on valid PGNs.

Errors

Errors if the header contains an invalid UTF-8 byte sequence.

Decodes the header as UTF-8, replacing any invalid byte sequences with the placeholder � U+FFFD.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

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.