pub struct WebFile {
pub size: usize,
pub name: String,
pub tmp: PathBuf,
}Expand description
Describes received files
Values
size: usize- File size.name: String- File name.tmp: std::path::PathBuf- Absolute path to file location.
Fields§
§size: usizeFile size
name: StringFile name
tmp: PathBufAbsolute path to file location
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for WebFile
impl Send for WebFile
impl Sync for WebFile
impl Unpin for WebFile
impl UnwindSafe for WebFile
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