pub enum FormEntry {
Field(String),
File(File),
}
Expand description
Representing the options any FormData value can be, a field or a file.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FormEntry
impl RefUnwindSafe for FormEntry
impl !Send for FormEntry
impl !Sync for FormEntry
impl Unpin for FormEntry
impl UnwindSafe for FormEntry
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