Struct worker::FormData [−][src]
pub struct FormData(_);
Expand description
A FormData representation of the request body, providing access to form encoded fields and files.
Implementations
Returns the first value associated with a given key from within a FormData
object.
Returns a vec of all the values associated with a given key from within a FormData
object.
Returns a boolean stating whether a FormData
object contains a certain key.
Appends a new value onto an existing key inside a FormData
object, or adds the key if it
does not already exist.
Sets a new value for an existing key inside a FormData
object, or adds the key/value if it
does not already exist.