pub struct SeamFileHandle {
pub name: Option<String>,
pub content_type: Option<String>,
pub data: Bytes,
}Expand description
File received from a multipart upload request.
Fields§
§name: Option<String>§content_type: Option<String>§data: BytesAuto Trait Implementations§
impl !Freeze for SeamFileHandle
impl RefUnwindSafe for SeamFileHandle
impl Send for SeamFileHandle
impl Sync for SeamFileHandle
impl Unpin for SeamFileHandle
impl UnsafeUnpin for SeamFileHandle
impl UnwindSafe for SeamFileHandle
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