pub struct ListObjectOptions<'a> {
pub prefix: Option<&'a str>,
pub start_offset: Option<&'a str>,
pub end_offset: Option<&'a str>,
pub max_results: Option<u32>,
pub page_token: Option<&'a str>,
}Expand description
Options for filtering which objects are returned from a list call.
Fields§
§prefix: Option<&'a str>Return only objects having keys starting with this prefix.
start_offset: Option<&'a str>The start offset of results.
end_offset: Option<&'a str>The end offset of results.
max_results: Option<u32>The maximum number of results to return.
page_token: Option<&'a str>The page token.
Trait Implementations§
Source§impl<'a> Clone for ListObjectOptions<'a>
impl<'a> Clone for ListObjectOptions<'a>
Source§fn clone(&self) -> ListObjectOptions<'a>
fn clone(&self) -> ListObjectOptions<'a>
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<'a> Debug for ListObjectOptions<'a>
impl<'a> Debug for ListObjectOptions<'a>
Source§impl<'a> Default for ListObjectOptions<'a>
impl<'a> Default for ListObjectOptions<'a>
Source§fn default() -> ListObjectOptions<'a>
fn default() -> ListObjectOptions<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> From<&'a str> for ListObjectOptions<'a>
impl<'a> From<&'a str> for ListObjectOptions<'a>
Auto Trait Implementations§
impl<'a> Freeze for ListObjectOptions<'a>
impl<'a> RefUnwindSafe for ListObjectOptions<'a>
impl<'a> Send for ListObjectOptions<'a>
impl<'a> Sync for ListObjectOptions<'a>
impl<'a> Unpin for ListObjectOptions<'a>
impl<'a> UnwindSafe for ListObjectOptions<'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