Other
[ CourseLala com ] Linkedin - Advanced Rust - Managing Projects
Torrent info
Name:[ CourseLala com ] Linkedin - Advanced Rust - Managing Projects
Infohash: 6FE49A22D89165A1342F9E9284BE72806CD05FA8
Total Size: 829.47 MB
Magnet: Magnet Download
Seeds: 2
Leechers: 0
Stream: Watch Full Movies @ LimeMovies
Last Updated: 2025-11-14 03:46:41 (Update Now)
Torrent added: 2022-04-07 22:00:53
Torrent Files List
Get Bonus Downloads Here.url (Size: 829.47 MB) (Files: 240)
Get Bonus Downloads Here.url
~Get Your Files Here !
1. Introduction
001. Manage and test Rust projects.en.srt
001. Manage and test Rust projects.mp4
002. What you should know.en.srt
002. What you should know.mp4
2. Managing Projects
003. The module system.mp4
004. Packages vs. crates.en.srt
004. Packages vs. crates.mp4
005. Defining modules.en.srt
005. Defining modules.mp4
006. Absolute vs. relative path.mp4
007. Public modules.en.srt
007. Public modules.mp4
008. Public structs and enums.en.srt
008. Public structs and enums.mp4
009. Bringing paths into scope.en.srt
009. Bringing paths into scope.mp4
010. Using external crates.en.srt
010. Using external crates.mp4
011. Separating modules into multiple files.en.srt
011. Separating modules into multiple files.mp4
012. Challenge Organize a project.en.srt
012. Challenge Organize a project.mp4
013. Solution Organize a project.en.srt
013. Solution Organize a project.mp4
3. Automating Tests
014. Test functions.en.srt
014. Test functions.mp4
015. assert! macro.en.srt
015. assert! macro.mp4
016. Custom failure messages.en.srt
016. Custom failure messages.mp4
017. assert_eq! and assert_ne! macros.en.srt
017. assert_eq! and assert_ne! macros.mp4
018. should_panic! macro.en.srt
018. should_panic! macro.mp4
019. Controlling test execution.en.srt
019. Controlling test execution.mp4
020. Unit tests.en.srt
020. Unit tests.mp4
021. Integration tests.en.srt
021. Integration tests.mp4
022. Challenge Write automated tests.en.srt
022. Challenge Write automated tests.mp4
023. Solution Write automated tests.mp4
4. Conclusion
024. Next steps.en.srt
024. Next steps.mp4
Bonus Resources.txt
Ex_Files_Advanced_Rust_Managing_Projects
Exercise Files
01_02_packages_and_crates
begin
my_project
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
bin
second_bin.rs
third_bin
another_module.rs
main.rs
lib.rs
main.rs
some_module.rs
end
my_project
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
bin
second_bin.rs
third_bin
another_module.rs
main.rs
lib.rs
main.rs
some_module.rs
01_03_inline_module
end
hello_world
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
main.rs
01_04_paths
begin
hello_world
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
main.rs
end
hello_world
Cargo.toml
src
main.rs
01_05_public_modules
begin
hello_world
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
main.rs
end
hello_world
Cargo.toml
src
main.rs
01_06_public_structs_enums
begin
hello_mod
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
main.rs
end
hello_mod
Cargo.toml
src
main.rs
01_07_path_scope
begin
path_scope
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
main.rs
end
path_scope
Cargo.toml
src
main.rs
01_08_external_crates
begin
external_crates
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
main.rs
end
external_crates
Cargo.toml
src
main.rs
01_09_separate_modules
begin
separate_modules
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
goodbye
casual.rs
mod.rs
greeting.rs
greeting
casual.rs
main.rs
end
separate_modules
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
goodbye
casual.rs
mod.rs
greeting.rs
greeting
casual.rs
main.rs
01_10_challenge_modules
begin
shapes
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
main.rs
end
challenge_modules
Cargo.toml
src
main.rs
01_11_solution_modules
begin
shapes
Cargo.toml
src
main.rs
end
shapes
Cargo.toml
src
main.rs
shapes.rs
02_01_test_functions
end
test_functions
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
lib.rs
02_02_assert_macro
begin
assert_macro
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
lib.rs
end
assert_macro
Cargo.toml
src
lib.rs
02_03_assert_variations
begin
assert_variations
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
lib.rs
end
assert_variations
Cargo.toml
src
lib.rs
02_04_custom_failure_messages
begin
custom_failure_messages
Cargo.toml
src
lib.rs
end
custom_failure_messages
Cargo.toml
src
lib.rs
02_05_should_panic
begin
should_panic
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
lib.rs
end
should_panic
Cargo.toml
src
lib.rs
02_06_controlling_tests
begin
controlling_tests
Cargo.toml
git
HEAD
config
description
hooks
README.sample
info
exclude
src
lib.rs
end
controlling_tests
Cargo.toml
src
lib.rs
02_07_unit_tests
begin
math_funcs
Cargo.toml
src
add_ops.rs
lib.rs
mul_ops.rs
end
math_funcs
Cargo.toml
src
add_ops.rs
lib.rs
mul_ops.rs
02_08_integration_tests
begin
math_funcs
Cargo.toml
src
add_ops.rs
lib.rs
mul_ops.rs
tests
rand_math.rs
test_utils
mod.rs
end
math_funcs
Cargo.toml
src
add_ops.rs
lib.rs
mul_ops.rs
tests
rand_math.rs
test_utils
mod.rs
02_09_challenge_tests
begin
shapes
Cargo.toml
src
main.rs
shapes.rs
end
shapes
Cargo.toml
src
main.rs
shapes.rs
02_10_solution_write_tests
begin
shapes
Cargo.toml
src
lib.rs
main.rs
tests
rand_shapes.rs
end
shapes
Cargo.toml
src
lib.rs
main.rs
tests
rand_shapes.rs
tracker
leech seedsTorrent description
Feel free to post any comments about this torrent, including links to Subtitle, samples, screenshots, or any other relevant information, Watch [ CourseLala com ] Linkedin - Advanced Rust - Managing Projects Online Free Full Movies Like 123Movies, Putlockers, Fmovies, Netflix or Download Direct via Magnet Link in Torrent Details.
related torrents
Torrent name
health leech seeds Size






