We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50dfa8 commit 546a17fCopy full SHA for 546a17f
sdk/storage_queues/src/operations/list_queues.rs
@@ -55,7 +55,7 @@ impl ListQueuesBuilder {
55
56
if let Some(continuation) = continuation {
57
url.query_pairs_mut()
58
- .append_pair("marker", &continuation.into_raw());
+ .append_pair("marker", &continuation.as_string());
59
}
60
61
this.max_results.append_to_url_query(&mut url);
@@ -99,8 +99,8 @@ pub struct ListQueuesResponse {
99
100
101
impl Continuable for ListQueuesResponse {
102
- fn continuation(&self) -> Option<String> {
103
- self.next_marker.clone().map(|x| x.as_str().to_owned())
+ fn continuation(&self) -> Option<Continuation> {
+ self.next_marker.clone().map(Continuation::from)
104
105
106
0 commit comments