pub struct MultipartUploadListOptions {
pub prefix: Option<String>,
pub delimiter: Option<String>,
pub key_marker: Option<String>,
pub upload_id_marker: Option<String>,
pub max_uploads: Option<i32>,
}Expand description
Options for one page of incomplete multipart uploads.
Fields§
§prefix: Option<String>Only return object keys beginning with this prefix.
delimiter: Option<String>Group keys containing this delimiter into common prefixes.
key_marker: Option<String>Key marker returned by the previous page.
upload_id_marker: Option<String>Upload ID marker returned by the previous page.
max_uploads: Option<i32>Maximum number of uploads and common prefixes to return.
Trait Implementations§
Source§impl Clone for MultipartUploadListOptions
impl Clone for MultipartUploadListOptions
Source§fn clone(&self) -> MultipartUploadListOptions
fn clone(&self) -> MultipartUploadListOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MultipartUploadListOptions
impl Debug for MultipartUploadListOptions
Source§impl Default for MultipartUploadListOptions
impl Default for MultipartUploadListOptions
Source§fn default() -> MultipartUploadListOptions
fn default() -> MultipartUploadListOptions
Returns the “default value” for a type. Read more
impl Eq for MultipartUploadListOptions
impl StructuralPartialEq for MultipartUploadListOptions
Auto Trait Implementations§
impl Freeze for MultipartUploadListOptions
impl RefUnwindSafe for MultipartUploadListOptions
impl Send for MultipartUploadListOptions
impl Sync for MultipartUploadListOptions
impl Unpin for MultipartUploadListOptions
impl UnsafeUnpin for MultipartUploadListOptions
impl UnwindSafe for MultipartUploadListOptions
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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