pub enum BatchPutObjectError {
NameTooLong {
length: usize,
},
QueueFull,
WriterClosed,
UnsizedBody,
}
Variants§
NameTooLong
QueueFull
No more put-object operations could be submitted because the submission queue is already full.
WriterClosed
No more put-object operations could be submitted because the object writer has been shut down.
UnsizedBody
The body given in the BatchPutObjectRequest must produce Some(usize) from its size_hint() method so that the correct space can be allocated for the object within the batch without having to read the whole stream into memory.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BatchPutObjectError
impl RefUnwindSafe for BatchPutObjectError
impl Send for BatchPutObjectError
impl Sync for BatchPutObjectError
impl Unpin for BatchPutObjectError
impl UnwindSafe for BatchPutObjectError
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