Struct h2::StreamId[][src]

pub struct StreamId(_);

A stream identifier, as described in Section 5.1.1 of RFC 7540.

Streams are identified with an unsigned 31-bit integer. Streams initiated by a client MUST use odd-numbered stream identifiers; those initiated by the server MUST use even-numbered stream identifiers. A stream identifier of zero (0x0) is used for connection control messages; the stream identifier of zero cannot be used to establish a new stream.

Trait Implementations

impl Debug for StreamId
[src]

Formats the value using the given formatter. Read more

impl Clone for StreamId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for StreamId
[src]

impl PartialEq for StreamId
[src]

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

This method tests for !=.

impl Hash for StreamId
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for StreamId

impl Sync for StreamId