Struct worker_plus::Objects
source · pub struct Objects { /* private fields */ }
Implementations§
source§impl Objects
impl Objects
sourcepub fn truncated(&self) -> bool
pub fn truncated(&self) -> bool
If true, indicates there are more results to be retrieved for the current list request.
sourcepub fn cursor(&self) -> Option<String>
pub fn cursor(&self) -> Option<String>
A token that can be passed to future list calls to resume listing from that point. Only present if truncated is true.
sourcepub fn delimited_prefixes(&self) -> Vec<String>
pub fn delimited_prefixes(&self) -> Vec<String>
If a delimiter has been specified, contains all prefixes between the specified prefix and the next occurence of the delimiter.
For example, if no prefix is provided and the delimiter is ‘/’, foo/bar/baz
would return
foo
as a delimited prefix. If foo/
was passed as a prefix with the same structure and
delimiter, foo/bar
would be returned as a delimited prefix.