pub struct PaginatedListOptions {
pub offset: Option<String>,
pub delimiter: Option<Cow<'static, str>>,
pub max_keys: Option<usize>,
pub page_token: Option<String>,
pub extensions: Extensions,
}Expand description
Options for a paginated list request
Fields§
§offset: Option<String>Path to start listing from
Note: Not all stores support this
For stores that do support this, the returned result should not include the object with this key.
delimiter: Option<Cow<'static, str>>A delimiter use to group keys with a common prefix
Note: Some stores only support /
max_keys: Option<usize>The maximum number of paths to return
page_token: Option<String>A page token from a previous request
Note: Behaviour is implementation defined if the previous request used a different prefix or options
extensions: ExtensionsImplementation-specific extensions. Intended for use by implementations that need to pass context-specific information (like tracing spans) via trait methods.
These extensions are ignored entirely by backends offered through this crate.
Trait Implementations§
Source§impl Clone for PaginatedListOptions
impl Clone for PaginatedListOptions
Source§fn clone(&self) -> PaginatedListOptions
fn clone(&self) -> PaginatedListOptions
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 PaginatedListOptions
impl Debug for PaginatedListOptions
Source§impl Default for PaginatedListOptions
impl Default for PaginatedListOptions
Source§fn default() -> PaginatedListOptions
fn default() -> PaginatedListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PaginatedListOptions
impl !RefUnwindSafe for PaginatedListOptions
impl Send for PaginatedListOptions
impl Sync for PaginatedListOptions
impl Unpin for PaginatedListOptions
impl UnsafeUnpin for PaginatedListOptions
impl !UnwindSafe for PaginatedListOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more