Struct hyper::header::Raw [] [src]

pub struct Raw(_);

A raw header value.

Methods

impl Raw
[src]

[src]

Returns the amount of lines.

[src]

Returns the line if there is only 1.

[src]

Iterate the lines of raw bytes.

[src]

Append a line to this Raw header value.

Trait Implementations

impl Clone for Raw
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Raw
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Raw
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for Raw
[src]

impl PartialEq<[Vec<u8>]> for Raw
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl<'a> PartialEq<[&'a [u8]]> for Raw
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<[String]> for Raw
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl<'a> PartialEq<[&'a str]> for Raw
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<[u8]> for Raw
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<str> for Raw
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl From<Vec<Vec<u8>>> for Raw
[src]

[src]

Performs the conversion.

impl From<String> for Raw
[src]

[src]

Performs the conversion.

impl From<Vec<u8>> for Raw
[src]

[src]

Performs the conversion.

impl<'a> From<&'a str> for Raw
[src]

[src]

Performs the conversion.

impl<'a> From<&'a [u8]> for Raw
[src]

[src]

Performs the conversion.

impl From<Bytes> for Raw
[src]

[src]

Performs the conversion.

impl Index<usize> for Raw
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl<'a> IntoIterator for &'a Raw
[src]

Which kind of iterator are we turning this into?

The type of the elements being iterated over.

[src]

Creates an iterator from a value. Read more