pub struct DeleteObjectRequest<'a> {
pub items: Vec<&'a str>,
pub dirs: Vec<&'a str>,
pub force: bool,
pub unlink: bool,
}Expand description
Delete object request for v3 API
Fields§
§items: Vec<&'a str>§dirs: Vec<&'a str>§force: bool§unlink: boolTrait Implementations§
Source§impl<'a> Debug for DeleteObjectRequest<'a>
impl<'a> Debug for DeleteObjectRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for DeleteObjectRequest<'a>
impl<'a> RefUnwindSafe for DeleteObjectRequest<'a>
impl<'a> Send for DeleteObjectRequest<'a>
impl<'a> Sync for DeleteObjectRequest<'a>
impl<'a> Unpin for DeleteObjectRequest<'a>
impl<'a> UnwindSafe for DeleteObjectRequest<'a>
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