pub struct MultipartWriter<W: MultipartWrite> { /* private fields */ }Expand description
MultipartWriter will implement oio::Write based on multipart
uploads.
Implementations§
Source§impl<W: MultipartWrite> MultipartWriter<W>
§Safety
wasm32 is a special target that we only have one event-loop for this state.
impl<W: MultipartWrite> MultipartWriter<W>
§Safety
wasm32 is a special target that we only have one event-loop for this state.
Sourcepub fn new(info: Arc<AccessorInfo>, inner: W, concurrent: usize) -> Self
pub fn new(info: Arc<AccessorInfo>, inner: W, concurrent: usize) -> Self
Create a new MultipartWriter.
Trait Implementations§
Source§impl<W> Write for MultipartWriter<W>where
W: MultipartWrite,
impl<W> Write for MultipartWriter<W>where
W: MultipartWrite,
Auto Trait Implementations§
impl<W> !Freeze for MultipartWriter<W>
impl<W> !RefUnwindSafe for MultipartWriter<W>
impl<W> Send for MultipartWriter<W>
impl<W> Sync for MultipartWriter<W>
impl<W> Unpin for MultipartWriter<W>
impl<W> !UnwindSafe for MultipartWriter<W>
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