Enum servlin::RequestBody

source ·
pub enum RequestBody {
    PendingKnown(u64),
    PendingUnknown,
    StaticBytes(&'static [u8]),
    StaticStr(&'static str),
    Vec(Vec<u8>),
    File(PathBuf, u64),
    TempFile(TempFile, u64),
}

Variants§

§

PendingKnown(u64)

§

PendingUnknown

§

StaticBytes(&'static [u8])

§

StaticStr(&'static str)

§

Vec(Vec<u8>)

§

File(PathBuf, u64)

§

TempFile(TempFile, u64)

Implementations§

source§

impl RequestBody

source

pub fn empty() -> Self

source

pub fn is_pending(&self) -> bool

Examples found in repository?
examples/http-put.rs (line 54)
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
fn put(state: Arc<State>, req: Request) -> Result<Response, Error> {
    if req.body.is_pending() {
        return Ok(Response::get_body_and_reprocess(1024 * 1024));
    }
    let body_len = req.body.reader()?.bytes().count();
    state.upload_count.fetch_add(1, Ordering::AcqRel);
    Ok(Response::text(
        200,
        format!(
            "Upload received, body_len={}, upload_count={}\n",
            body_len,
            state.upload_count.load(Ordering::Acquire)
        ),
    ))
}
source

pub fn is_empty(&self) -> Option<bool>

source

pub fn len(&self) -> Option<u64>

Returns the body length, if it is known.

source

pub fn reader(&self) -> Result<BodyReader<'_>, Error>

Errors

Returns an error when the body is cached in a file and we fail to open the file.

Examples found in repository?
examples/http-put.rs (line 57)
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
fn put(state: Arc<State>, req: Request) -> Result<Response, Error> {
    if req.body.is_pending() {
        return Ok(Response::get_body_and_reprocess(1024 * 1024));
    }
    let body_len = req.body.reader()?.bytes().count();
    state.upload_count.fetch_add(1, Ordering::AcqRel);
    Ok(Response::text(
        200,
        format!(
            "Upload received, body_len={}, upload_count={}\n",
            body_len,
            state.upload_count.load(Ordering::Acquire)
        ),
    ))
}
source

pub async fn async_reader(&self) -> Result<BodyAsyncReader<'_>, Error>

Errors

Returns an error when the body is cached in a file and we fail to open the file.

Trait Implementations§

source§

impl Clone for RequestBody

source§

fn clone(&self) -> RequestBody

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for RequestBody

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<&'static [u8]> for RequestBody

source§

fn from(b: &'static [u8]) -> Self

Converts to this type from the input type.
source§

impl From<&'static str> for RequestBody

source§

fn from(s: &'static str) -> Self

Converts to this type from the input type.
source§

impl<const LEN: usize> From<[u8; LEN]> for RequestBody

source§

fn from(b: [u8; LEN]) -> Self

Converts to this type from the input type.
source§

impl From<String> for RequestBody

source§

fn from(s: String) -> Self

Converts to this type from the input type.
source§

impl From<Vec<u8>> for RequestBody

source§

fn from(v: Vec<u8>) -> Self

Converts to this type from the input type.
source§

impl PartialEq for RequestBody

source§

fn eq(&self, other: &RequestBody) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<RequestBody> for String

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(body: RequestBody) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<RequestBody> for Vec<u8>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(body: RequestBody) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Eq for RequestBody

source§

impl StructuralEq for RequestBody

source§

impl StructuralPartialEq for RequestBody

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more