pub struct FormPart {
pub name: Option<String>,
pub filename: Option<String>,
pub content_type: Option<String>,
pub temp_file: Option<NamedTempFile>,
pub value: Option<Vec<u8>>,
}
Fields§
§name: Option<String>
§filename: Option<String>
§content_type: Option<String>
§temp_file: Option<NamedTempFile>
§value: Option<Vec<u8>>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FormPart
impl RefUnwindSafe for FormPart
impl Send for FormPart
impl Sync for FormPart
impl Unpin for FormPart
impl UnwindSafe for FormPart
Blanket Implementations§
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