File tree 1 file changed +3
-4
lines changed
sdk/storage_blobs/src/service/operations
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -8,21 +8,20 @@ operation! {
8
8
FindBlobsByTags ,
9
9
client: BlobServiceClient ,
10
10
expression: String ,
11
- ?next_marker: NextMarker ,
12
- ?max_results: MaxResults ,
13
11
?marker: NextMarker ,
12
+ ?max_results: MaxResults ,
14
13
}
15
14
16
15
impl FindBlobsByTagsBuilder {
17
16
pub fn into_stream ( self ) -> FindBlobsByTags {
18
- let make_request = move |next_marker : Option < NextMarker > | {
17
+ let make_request = move |continuation : Option < NextMarker > | {
19
18
let this = self . clone ( ) ;
20
19
let mut ctx = self . context . clone ( ) ;
21
20
async move {
22
21
let mut url = this. client . url ( ) ?;
23
22
24
23
url. query_pairs_mut ( ) . append_pair ( "comp" , "blobs" ) ;
25
- if let Some ( next_marker) = next_marker . or ( this. marker ) {
24
+ if let Some ( next_marker) = continuation . or ( this. marker ) {
26
25
next_marker. append_to_url_query ( & mut url) ;
27
26
}
28
27
url. query_pairs_mut ( ) . append_pair ( "where" , & this. expression ) ;
You can’t perform that action at this time.
0 commit comments