pub enum FormDataValue {
Text(String),
File(String),
}Expand description
Types of values for form data, can be text or binaries
Variants§
Trait Implementations§
Source§impl Debug for FormDataValue
impl Debug for FormDataValue
Source§impl Display for FormDataValue
impl Display for FormDataValue
Source§impl PartialEq for FormDataValue
impl PartialEq for FormDataValue
impl StructuralPartialEq for FormDataValue
Auto Trait Implementations§
impl Freeze for FormDataValue
impl RefUnwindSafe for FormDataValue
impl Send for FormDataValue
impl Sync for FormDataValue
impl Unpin for FormDataValue
impl UnwindSafe for FormDataValue
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