Struct actix_form_data::Multipart
source · [−]pub struct Multipart<T>(pub T);Tuple Fields
0: TTrait Implementations
sourceimpl<T> FromRequest for Multipart<T>where
T: FormData,
impl<T> FromRequest for Multipart<T>where
T: FormData,
type Future = Pin<Box<dyn Future<Output = Result<Multipart<T>, <Multipart<T> as FromRequest>::Error>> + 'static, Global>>
type Future = Pin<Box<dyn Future<Output = Result<Multipart<T>, <Multipart<T> as FromRequest>::Error>> + 'static, Global>>
Future that resolves to a
Self. Read moresourcefn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future
Create a
Self from request parts asynchronously.sourcefn extract(req: &HttpRequest) -> Self::Future
fn extract(req: &HttpRequest) -> Self::Future
Create a
Self from request head asynchronously. Read moreAuto Trait Implementations
impl<T> RefUnwindSafe for Multipart<T>where
T: RefUnwindSafe,
impl<T> Send for Multipart<T>where
T: Send,
impl<T> Sync for Multipart<T>where
T: Sync,
impl<T> Unpin for Multipart<T>where
T: Unpin,
impl<T> UnwindSafe for Multipart<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more