📝Get your *FREE Rust cheat sheet* : www.letsgetrusty.com/cheatsheet
@proIdeas372 жыл бұрын
Please make a video on how to read and understand modules of Rust and things around it!
@ramtinabadi2 жыл бұрын
like this format more. straight away with the content.
@AmnesiaPhotography2 жыл бұрын
Love these videos. Keep up the great work!
@whited2502 жыл бұрын
A follow-up question: How would you write tests for lib features? If you #[cfg(...)] annotate your test, will it always run, or only when you run tests with flags that enable the feature?
@typescriptuser Жыл бұрын
I hope he makes more videos like this 👀
@amirhosein_gpr1622 жыл бұрын
Amazing, useful video! Thank you so much 🙏❤
@TheZdannar2 жыл бұрын
Bogdan, do you have any experience with creating a private cargo repository?
@WizardOfArc Жыл бұрын
this features flag is very cool!
@michaelhugi87612 жыл бұрын
Thanks for all the information. I enjoy your channel. Can you do a video on how to call rust code from Java with input and return parameters?
@ivandenysenko2 жыл бұрын
Awesome explanation, thanks!
@herschelma83642 жыл бұрын
How clear it is! I'm looking forward for a series tutorial of rust web devlopment using actix-web 4. Do you have a plan?
@lardycake2 жыл бұрын
What happens if you have tests for features that are disabled by default? I guess the tests will also need to check for the feature being enabled.
@nsubugakasozi71012 жыл бұрын
Rust tests normally sit inside the module. They are normally a submodule of the module you are testing. Based on this, they will run under the configuration specified for that module