#[non_exhaustive]pub struct Part {
pub name: String,
pub file_name: String,
pub content_type: String,
pub text: String,
pub data: Data,
}Expand description
Part of multipart data ( uploaded files ).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringPart name.
file_name: StringPart filename.
content_type: StringPart contenttype.
text: String§data: DataTrait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Part
impl Send for Part
impl Sync for Part
impl Unpin for Part
impl UnwindSafe for Part
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