Home
last modified time | relevance | path

Searched defs:MultipartError (Results 1 – 1 of 1) sorted by relevance

/external/rust/android-crates-io/crates/axum/src/extract/
Dmultipart.rs85 pub async fn next_field(&mut self) -> Result<Option<Field<'_>>, MultipartError> { in next_field() argument
148 pub async fn bytes(self) -> Result<Bytes, MultipartError> { in bytes() argument
156 pub async fn text(self) -> Result<String, MultipartError> { in text() argument
198 pub async fn chunk(&mut self) -> Result<Option<Bytes>, MultipartError> { in chunk() argument
208 pub struct MultipartError { struct
212 impl MultipartError { argument
263 impl fmt::Display for MultipartError { implementation
269 impl std::error::Error for MultipartError { implementation
275 impl IntoResponse for MultipartError { implementation
356 async fn handle(mut multipart: Multipart) -> Result<(), MultipartError> { in body_too_large() argument