pub struct ListObjectsRequest {
pub bucket: String,
pub delimiter: Option<String>,
pub encoding_type: Option<String>,
pub marker: Option<String>,
pub max_keys: Option<i64>,
pub prefix: Option<String>,
pub request_payer: Option<String>,
}Fields§
§bucket: StringThe name of the bucket containing the objects.
delimiter: Option<String>A delimiter is a character you use to group keys.
encoding_type: Option<String>§marker: Option<String>Specifies the key to start with when listing objects in a bucket.
max_keys: Option<i64>Sets the maximum number of keys returned in the response. By default the API returns up to 1,000 key names. The response might contain fewer keys but will never contain more.
prefix: Option<String>Limits the response to keys that begin with the specified prefix.
request_payer: Option<String>Confirms that the requester knows that she or he will be charged for the list objects request. Bucket owners need not specify this parameter in their requests.
Trait Implementations§
Source§impl Clone for ListObjectsRequest
impl Clone for ListObjectsRequest
Source§fn clone(&self) -> ListObjectsRequest
fn clone(&self) -> ListObjectsRequest
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 ListObjectsRequest
impl Debug for ListObjectsRequest
Source§impl Default for ListObjectsRequest
impl Default for ListObjectsRequest
Source§fn default() -> ListObjectsRequest
fn default() -> ListObjectsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListObjectsRequest
impl PartialEq for ListObjectsRequest
impl StructuralPartialEq for ListObjectsRequest
Auto Trait Implementations§
impl Freeze for ListObjectsRequest
impl RefUnwindSafe for ListObjectsRequest
impl Send for ListObjectsRequest
impl Sync for ListObjectsRequest
impl Unpin for ListObjectsRequest
impl UnwindSafe for ListObjectsRequest
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