Struct actix_web::Version [] [src]

pub struct Version(_);

Represents a version of the HTTP spec.

Methods

impl Version
[src]

HTTP_09: Version = Version(Http::Http09)

HTTP_10: Version = Version(Http::Http10)

HTTP_11: Version = Version(Http::Http11)

HTTP_2: Version = Version(Http::H2)

Trait Implementations

impl Ord for Version
[src]

[src]

This method returns an Ordering between self and other. Read more

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl Copy for Version
[src]

impl Hash for Version
[src]

[src]

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

1.3.0
[src]

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

impl Clone for Version
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Version> for Version
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for Version
[src]

[src]

Formats the value using the given formatter.

impl Default for Version
[src]

[src]

Returns the "default value" for a type. Read more

impl Eq for Version
[src]

impl PartialOrd<Version> for Version
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more