Struct salvo_core::http::form::FormData
source · pub struct FormData {
pub fields: MultiMap<String, String>,
pub files: MultiMap<String, FilePart>,
}Expand description
The extracted text fields and uploaded files from a multipart/form-data request.
Fields§
§fields: MultiMap<String, String>Name-value pairs for plain text fields. Technically, these are form data parts with no
filename specified in the part’s Content-Disposition.
files: MultiMap<String, FilePart>Name-value pairs for temporary files. Technically, these are form data parts with a filename
specified in the part’s Content-Disposition.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for FormData
impl Send for FormData
impl Sync for FormData
impl Unpin for FormData
impl UnwindSafe for FormData
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more