pub struct PartialSavedField<M: ReadEntry> {
pub source: MultipartField<M>,
pub dest: Option<SavedData>,
}
Expand description
The field that was being read when the save operation quit.
May be partially saved to the filesystem if dest
is Some
.
Fields§
§source: MultipartField<M>
The field that was being read.
May be partially read if dest
is Some
.
dest: Option<SavedData>
The data from the saving operation, if it got that far.
Trait Implementations§
Auto Trait Implementations§
impl<M> Freeze for PartialSavedField<M>where
M: Freeze,
impl<M> RefUnwindSafe for PartialSavedField<M>where
M: RefUnwindSafe,
impl<M> Send for PartialSavedField<M>where
M: Send,
impl<M> Sync for PartialSavedField<M>where
M: Sync,
impl<M> Unpin for PartialSavedField<M>where
M: Unpin,
impl<M> UnwindSafe for PartialSavedField<M>where
M: UnwindSafe,
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