Enum actix_web::body::BodySize[][src]

pub enum BodySize {
    None,
    Empty,
    Sized(u64),
    Stream,
}

Body size hint.

Variants

None

Absence of body can be assumed from method or status code.

Will skip writing Content-Length header.

Empty

Zero size body.

Will write Content-Length: 0 header.

Sized(u64)

Known size body.

Will write Content-Length: N header. Sized(0) is treated the same as Empty.

Stream

Unknown size body.

Will not write Content-Length header. Can be used with chunked Transfer-Encoding.

Implementations

impl BodySize[src]

pub fn is_eof(&self) -> bool[src]

Returns true if size hint indicates no or empty body.

assert!(BodySize::None.is_eof());
assert!(BodySize::Empty.is_eof());
assert!(BodySize::Sized(0).is_eof());

assert!(!BodySize::Sized(64).is_eof());
assert!(!BodySize::Stream.is_eof());

Trait Implementations

impl Clone for BodySize[src]

impl Copy for BodySize[src]

impl Debug for BodySize[src]

impl PartialEq<BodySize> for BodySize[src]

impl StructuralPartialEq for BodySize[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,