pub enum MultipartItems<S> {
    Field(MultipartField),
    Stream(MultipartStream<S>),
}Expand description
The enum for multipart items which is either a field or a stream
Variants§
Auto Trait Implementations§
impl<S> Freeze for MultipartItems<S>where
    S: Freeze,
impl<S> RefUnwindSafe for MultipartItems<S>where
    S: RefUnwindSafe,
impl<S> Send for MultipartItems<S>where
    S: Send,
impl<S> Sync for MultipartItems<S>where
    S: Sync,
impl<S> Unpin for MultipartItems<S>where
    S: Unpin,
impl<S> UnwindSafe for MultipartItems<S>where
    S: 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