How to map a vector into actix-web client requests and run them sequentially?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have a vector and I want to make multiple requests and get vector of values. Something like:



use actix_web::client;
let nums = vec![1, 2, 3];
let values = nums.map(|num|
client::ClientRequest::get("http://example.com".to_owned() + &num);
);


And I will get [1, 4, 9].



Said another way:



fn question_data(id: &str) -> Box<Future<Item = Question, Error = actix_web::error::Error>> 
resp.body().limit(67_108_864).from_err().and_then(),
)



Then I use it:



let question_ids = vec!["q1", "q2", "q3"];

let mut questions = questions_data().wait().expect("Failed to fetch questions");
let question = question_data("q2")
.wait()
.expect("Failed to fetch question");
println!(":?", question);

let data = question_ids.map(|id| Box::new(question_data(id)));


But I get the error:



245 | let data = question_ids.map(|id| Box::new(question_data(id)));
| ^^^
|
= note: the method `map` exists but the following trait bounds were not satisfied:
`&mut std::vec::Vec<std::string::String> : futures::Future`
`&mut std::vec::Vec<std::string::String> : std::iter::Iterator`
`&mut [std::string::String] : futures::Future`
`&mut [std::string::String] : std::iter::Iterator`


These are similar but does not compile for me, and also I want to use actix-web:



  • Getting multiple URLs concurrently with Hyper

  • How can I perform parallel asynchronous HTTP GET requests with reqwest?

  • How do I iterate over a Vec of functions returning Futures in Rust?

  • https://www.reddit.com/r/rust/comments/7wwhhk/patterns_for_processing_a_stream_of_urls/du4jw0t/









share|improve this question
























  • It's not quite clear what you are asking here. Are you looking for nums.into_iter().map(|n| make_request(n)).collect()?

    – Sven Marnach
    Nov 15 '18 at 14:25












  • @SvenMarnach I have expaned the question.

    – rofrol
    Nov 15 '18 at 14:34











  • Don't understand your problem.

    – Stargateur
    Nov 15 '18 at 15:10






  • 1





    If you want to perform all the requests concurrently, you can use futures::future::join_all() to combine the individual request futures into a single future returning a vector of results.

    – Sven Marnach
    Nov 15 '18 at 15:14











  • @SvenMarnach and sequentially? Or concurrently but limit number of simultaneous connections?

    – rofrol
    Nov 15 '18 at 15:35

















0















I have a vector and I want to make multiple requests and get vector of values. Something like:



use actix_web::client;
let nums = vec![1, 2, 3];
let values = nums.map(|num|
client::ClientRequest::get("http://example.com".to_owned() + &num);
);


And I will get [1, 4, 9].



Said another way:



fn question_data(id: &str) -> Box<Future<Item = Question, Error = actix_web::error::Error>> 
resp.body().limit(67_108_864).from_err().and_then(),
)



Then I use it:



let question_ids = vec!["q1", "q2", "q3"];

let mut questions = questions_data().wait().expect("Failed to fetch questions");
let question = question_data("q2")
.wait()
.expect("Failed to fetch question");
println!(":?", question);

let data = question_ids.map(|id| Box::new(question_data(id)));


But I get the error:



245 | let data = question_ids.map(|id| Box::new(question_data(id)));
| ^^^
|
= note: the method `map` exists but the following trait bounds were not satisfied:
`&mut std::vec::Vec<std::string::String> : futures::Future`
`&mut std::vec::Vec<std::string::String> : std::iter::Iterator`
`&mut [std::string::String] : futures::Future`
`&mut [std::string::String] : std::iter::Iterator`


These are similar but does not compile for me, and also I want to use actix-web:



  • Getting multiple URLs concurrently with Hyper

  • How can I perform parallel asynchronous HTTP GET requests with reqwest?

  • How do I iterate over a Vec of functions returning Futures in Rust?

  • https://www.reddit.com/r/rust/comments/7wwhhk/patterns_for_processing_a_stream_of_urls/du4jw0t/









share|improve this question
























  • It's not quite clear what you are asking here. Are you looking for nums.into_iter().map(|n| make_request(n)).collect()?

    – Sven Marnach
    Nov 15 '18 at 14:25












  • @SvenMarnach I have expaned the question.

    – rofrol
    Nov 15 '18 at 14:34











  • Don't understand your problem.

    – Stargateur
    Nov 15 '18 at 15:10






  • 1





    If you want to perform all the requests concurrently, you can use futures::future::join_all() to combine the individual request futures into a single future returning a vector of results.

    – Sven Marnach
    Nov 15 '18 at 15:14











  • @SvenMarnach and sequentially? Or concurrently but limit number of simultaneous connections?

    – rofrol
    Nov 15 '18 at 15:35













0












0








0








I have a vector and I want to make multiple requests and get vector of values. Something like:



use actix_web::client;
let nums = vec![1, 2, 3];
let values = nums.map(|num|
client::ClientRequest::get("http://example.com".to_owned() + &num);
);


And I will get [1, 4, 9].



Said another way:



fn question_data(id: &str) -> Box<Future<Item = Question, Error = actix_web::error::Error>> 
resp.body().limit(67_108_864).from_err().and_then(),
)



Then I use it:



let question_ids = vec!["q1", "q2", "q3"];

let mut questions = questions_data().wait().expect("Failed to fetch questions");
let question = question_data("q2")
.wait()
.expect("Failed to fetch question");
println!(":?", question);

let data = question_ids.map(|id| Box::new(question_data(id)));


But I get the error:



245 | let data = question_ids.map(|id| Box::new(question_data(id)));
| ^^^
|
= note: the method `map` exists but the following trait bounds were not satisfied:
`&mut std::vec::Vec<std::string::String> : futures::Future`
`&mut std::vec::Vec<std::string::String> : std::iter::Iterator`
`&mut [std::string::String] : futures::Future`
`&mut [std::string::String] : std::iter::Iterator`


These are similar but does not compile for me, and also I want to use actix-web:



  • Getting multiple URLs concurrently with Hyper

  • How can I perform parallel asynchronous HTTP GET requests with reqwest?

  • How do I iterate over a Vec of functions returning Futures in Rust?

  • https://www.reddit.com/r/rust/comments/7wwhhk/patterns_for_processing_a_stream_of_urls/du4jw0t/









share|improve this question
















I have a vector and I want to make multiple requests and get vector of values. Something like:



use actix_web::client;
let nums = vec![1, 2, 3];
let values = nums.map(|num|
client::ClientRequest::get("http://example.com".to_owned() + &num);
);


And I will get [1, 4, 9].



Said another way:



fn question_data(id: &str) -> Box<Future<Item = Question, Error = actix_web::error::Error>> 
resp.body().limit(67_108_864).from_err().and_then(),
)



Then I use it:



let question_ids = vec!["q1", "q2", "q3"];

let mut questions = questions_data().wait().expect("Failed to fetch questions");
let question = question_data("q2")
.wait()
.expect("Failed to fetch question");
println!(":?", question);

let data = question_ids.map(|id| Box::new(question_data(id)));


But I get the error:



245 | let data = question_ids.map(|id| Box::new(question_data(id)));
| ^^^
|
= note: the method `map` exists but the following trait bounds were not satisfied:
`&mut std::vec::Vec<std::string::String> : futures::Future`
`&mut std::vec::Vec<std::string::String> : std::iter::Iterator`
`&mut [std::string::String] : futures::Future`
`&mut [std::string::String] : std::iter::Iterator`


These are similar but does not compile for me, and also I want to use actix-web:



  • Getting multiple URLs concurrently with Hyper

  • How can I perform parallel asynchronous HTTP GET requests with reqwest?

  • How do I iterate over a Vec of functions returning Futures in Rust?

  • https://www.reddit.com/r/rust/comments/7wwhhk/patterns_for_processing_a_stream_of_urls/du4jw0t/






rust future rust-actix






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 16 '18 at 9:41







rofrol

















asked Nov 15 '18 at 14:13









rofrolrofrol

7,92534649




7,92534649












  • It's not quite clear what you are asking here. Are you looking for nums.into_iter().map(|n| make_request(n)).collect()?

    – Sven Marnach
    Nov 15 '18 at 14:25












  • @SvenMarnach I have expaned the question.

    – rofrol
    Nov 15 '18 at 14:34











  • Don't understand your problem.

    – Stargateur
    Nov 15 '18 at 15:10






  • 1





    If you want to perform all the requests concurrently, you can use futures::future::join_all() to combine the individual request futures into a single future returning a vector of results.

    – Sven Marnach
    Nov 15 '18 at 15:14











  • @SvenMarnach and sequentially? Or concurrently but limit number of simultaneous connections?

    – rofrol
    Nov 15 '18 at 15:35

















  • It's not quite clear what you are asking here. Are you looking for nums.into_iter().map(|n| make_request(n)).collect()?

    – Sven Marnach
    Nov 15 '18 at 14:25












  • @SvenMarnach I have expaned the question.

    – rofrol
    Nov 15 '18 at 14:34











  • Don't understand your problem.

    – Stargateur
    Nov 15 '18 at 15:10






  • 1





    If you want to perform all the requests concurrently, you can use futures::future::join_all() to combine the individual request futures into a single future returning a vector of results.

    – Sven Marnach
    Nov 15 '18 at 15:14











  • @SvenMarnach and sequentially? Or concurrently but limit number of simultaneous connections?

    – rofrol
    Nov 15 '18 at 15:35
















It's not quite clear what you are asking here. Are you looking for nums.into_iter().map(|n| make_request(n)).collect()?

– Sven Marnach
Nov 15 '18 at 14:25






It's not quite clear what you are asking here. Are you looking for nums.into_iter().map(|n| make_request(n)).collect()?

– Sven Marnach
Nov 15 '18 at 14:25














@SvenMarnach I have expaned the question.

– rofrol
Nov 15 '18 at 14:34





@SvenMarnach I have expaned the question.

– rofrol
Nov 15 '18 at 14:34













Don't understand your problem.

– Stargateur
Nov 15 '18 at 15:10





Don't understand your problem.

– Stargateur
Nov 15 '18 at 15:10




1




1





If you want to perform all the requests concurrently, you can use futures::future::join_all() to combine the individual request futures into a single future returning a vector of results.

– Sven Marnach
Nov 15 '18 at 15:14





If you want to perform all the requests concurrently, you can use futures::future::join_all() to combine the individual request futures into a single future returning a vector of results.

– Sven Marnach
Nov 15 '18 at 15:14













@SvenMarnach and sequentially? Or concurrently but limit number of simultaneous connections?

– rofrol
Nov 15 '18 at 15:35





@SvenMarnach and sequentially? Or concurrently but limit number of simultaneous connections?

– rofrol
Nov 15 '18 at 15:35












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53321373%2fhow-to-map-a-vector-into-actix-web-client-requests-and-run-them-sequentially%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53321373%2fhow-to-map-a-vector-into-actix-web-client-requests-and-run-them-sequentially%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kleinkühnau

Makov (Slowakei)

Deutsches Schauspielhaus