pub struct ListObjectsInput {
pub bucket: String,
pub delimiter: Option<String>,
pub encoding_type: Option<EncodingType>,
pub expected_bucket_owner: Option<String>,
pub marker: Option<String>,
pub max_keys: Option<i32>,
pub optional_object_attributes: Vec<OptionalObjectAttributes>,
pub prefix: Option<String>,
pub request_payer: Option<RequestPayer>,
}Expand description
S3 ListObjectsInput.
Fields§
§bucket: StringHTTP label (URI path).
delimiter: Option<String>HTTP query: delimiter.
encoding_type: Option<EncodingType>HTTP query: encoding-type.
expected_bucket_owner: Option<String>HTTP header: x-amz-expected-bucket-owner.
marker: Option<String>HTTP query: marker.
max_keys: Option<i32>HTTP query: max-keys.
optional_object_attributes: Vec<OptionalObjectAttributes>HTTP header: x-amz-optional-object-attributes.
prefix: Option<String>HTTP query: prefix.
request_payer: Option<RequestPayer>HTTP header: x-amz-request-payer.
Trait Implementations§
Source§impl Clone for ListObjectsInput
impl Clone for ListObjectsInput
Source§fn clone(&self) -> ListObjectsInput
fn clone(&self) -> ListObjectsInput
Returns a duplicate of the value. Read more
1.0.0 · 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 ListObjectsInput
impl Debug for ListObjectsInput
Source§impl Default for ListObjectsInput
impl Default for ListObjectsInput
Source§fn default() -> ListObjectsInput
fn default() -> ListObjectsInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListObjectsInput
impl RefUnwindSafe for ListObjectsInput
impl Send for ListObjectsInput
impl Sync for ListObjectsInput
impl Unpin for ListObjectsInput
impl UnsafeUnpin for ListObjectsInput
impl UnwindSafe for ListObjectsInput
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