Oreilly - Idiomatic Rust, Video Edition
- CategoryOther
- TypeTutorials
- LanguageEnglish
- Total size791.8 MB
- Uploaded Byfreecoursewb
- Downloads11
- Last checkedOct. 25th '24
- Date uploadedOct. 25th '24
- Seeders 3
- Leechers9
Idiomatic Rust, Video Edition
https://FreeCourseWeb.com
Released 9/2024
MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch
Genre: eLearning | Language: English | Duration: 5h 24m | Size: 792 MB
Tips, tricks, design patterns, and secret features of Rust that will help you build stable and maintainable applications.
Whether you’re a Rust beginner or a pro, Idiomatic Rust will teach you to be a better Rust programmer. It introduces essential design patterns for Rust software with detailed explanations, and code samples that encourage you to get stuck in.
In Idiomatic Rust you’ll learn how to apply important design patterns including
Files:
[ FreeCourseWeb.com ] Oreilly - Idiomatic Rust, Video Edition- Get Bonus Downloads Here.url (0.2 KB) ~Get Your Files Here !
- Bonus Resources.txt (0.4 KB)
- Chapter_1._Rust-y_patterns.mp4 (14.7 MB)
- Chapter_1._Summary.mp4 (2.6 MB)
- Chapter_1._Tools_you_ll_need.mp4 (986.7 KB)
- Chapter_1._What_design_patterns_are.mp4 (18.2 MB)
- Chapter_1._Why_this_book_is_different.mp4 (7.0 MB)
- Chapter_10._Antipatterns.mp4 (11.2 MB)
- Chapter_10._Global_data_and_singletons.mp4 (3.6 MB)
- Chapter_10._Not_using_Vec.mp4 (14.7 MB)
- Chapter_10._Summary.mp4 (7.6 MB)
- Chapter_10._Too_many_clones.mp4 (2.3 MB)
- Chapter_10._Too_many_smart_pointers.mp4 (7.4 MB)
- Chapter_10._Using_Deref_to_emulate_polymorphism.mp4 (11.6 MB)
- Chapter_10._Using_unsafe.mp4 (30.0 MB)
- Chapter_10._Using_unwrap().mp4 (4.9 MB)
- Chapter_10._Where_to_go_from_here.mp4 (3.5 MB)
- Chapter_2._Rust_s_basic_building_blocks.mp4 (31.5 MB)
- Chapter_2._Summary.mp4 (3.6 MB)
- Chapter_2._Traits.mp4 (44.6 MB)
- Chapter_3._Code_flow.mp4 (27.9 MB)
- Chapter_3._Functional_Rust.mp4 (59.9 MB)
- Chapter_3._Summary.mp4 (3.7 MB)
- Chapter_4._Constructors.mp4 (7.9 MB)
- Chapter_4._Error_handling.mp4 (12.6 MB)
- Chapter_4._Global_state.mp4 (18.2 MB)
- Chapter_4._Introductory_patterns.mp4 (36.3 MB)
- Chapter_4._Object-member_visibility_and_access.mp4 (7.2 MB)
- Chapter_4._Passing_arguments_by_value_vs._reference.mp4 (16.2 MB)
- Chapter_4._Summary.mp4 (5.5 MB)
- Chapter_5._Builder_pattern.mp4 (13.3 MB)
- Chapter_5._Command_pattern.mp4 (9.5 MB)
- Chapter_5._Design_patterns_Beyond_the_basics.mp4 (43.1 MB)
- Chapter_5._Fluent_interface_pattern.mp4 (6.9 MB)
- Chapter_5._Newtype_pattern.mp4 (10.8 MB)
- Chapter_5._Observer_pattern.mp4 (9.8 MB)
- Chapter_5._Optional_function_arguments.mp4 (11.3 MB)
- Chapter_5._Summary.mp4 (4.8 MB)
- Chapter_6._Avoid_excessive_abstraction.mp4 (4.1 MB)
- Chapter_6._Consider_the_aesthetics.mp4 (3.6 MB)
- Chapter_6._Designing_a_library.mp4 (9.2 MB)
- Chapter_6._Do_one_thing,_do_it_well,_and_do_it_correctly.mp4 (5.3 MB)
- Chapter_6._Document_everything,_and_provide_examples.mp4 (1.6 MB)
- Chapter_6._Don_t_break_the_user_s_code.mp4 (2.7 MB)
- Chapter_6._Examining_Rust_library_ergonomics.mp4 (27.9 MB)
- Chapter_6._Good_artists_copy;_great_artists_steal_(from_the_standard_library).mp4 (2.8 MB)
- Chapter_6._Stick_to_basic_types.mp4 (3.0 MB)
- Chapter_6._Summary.mp4 (4.9 MB)
- Chapter_6._Think_of_the_state.mp4 (5.5 MB)
- Chapter_6._Use_the_tools.mp4 (2.4 MB)
- Chapter_7._Blanket_traits.mp4 (6.9 MB)
- Chapter_7._Extension_traits.mp4 (5.2 MB)
- Chapter_7._Implementing_traits_for_external_crate_types.mp4 (6.6 MB)
- Chapter_7._Marker_traits.mp4 (8.2 MB)
- Chapter_7._Reference_objects.mp4 (9.8 MB)
- Chapter_7._Struct_tagging.mp4 (8.0 MB)
- Chapter_7._Summary.mp4 (3.4 MB)
- Chapter_7._Using_traits,_generics,_and_structs_for_specialized_tasks.mp4 (10.6 MB)
- Chapter_8._Coroutines.mp4 (15.9 MB)
- Chapter_8._Preludes.mp4 (7.5 MB)
- Chapter_8._Procedural_macros.mp4 (14.4 MB)
- Chapter_8._State_machines,_coroutines,_macros,_and_preludes.mp4 (10.3 MB)
- Chapter_8._Summary.mp4 (1.9 MB)
- Chapter_9._How_to_think_about_immutable_data.mp4 (7.7 MB)
- Chapter_9._Immutability.mp4 (22.7 MB)
- Chapter_9._Reviewing_the_basics_of_immutability_in_Rust.mp4 (9.8 MB)
- Chapter_9._Summary.mp4 (3.3 MB)
- Chapter_9._Understanding_immutability_in_Rust.mp4 (8.8 MB)
- Chapter_9._Using_Cow_for_immutability.mp4 (9.8 MB)
- Chapter_9._Using_crates_for_immutable_data_structures.mp4 (7.0 MB)
- Chapter_9._Using_traits_to_make_(almost)_anything_immutable.mp4 (3.5 MB)
- Chapter_9._Why_immutability_is_not_a_magic_bullet.mp4 (3.8 MB)
- Part_1._Building_blocks.mp4 (2.7 MB)
- Part_2._Core_patterns.mp4 (2.4 MB)
- Part_3._Advanced_patterns.mp4 (1.6 MB)
- Part_4._Problem_avoidance.mp4 (1.8 MB)
Code:
- udp://tracker.torrent.eu.org:451/announce
- udp://tracker.tiny-vps.com:6969/announce
- http://tracker.foreverpirates.co:80/announce
- udp://tracker.cyberia.is:6969/announce
- udp://exodus.desync.com:6969/announce
- udp://explodie.org:6969/announce
- udp://tracker.opentrackr.org:1337/announce
- udp://9.rarbg.to:2780/announce
- udp://tracker.internetwarriors.net:1337/announce
- udp://ipv4.tracker.harry.lu:80/announce
- udp://open.stealth.si:80/announce
- udp://9.rarbg.to:2900/announce
- udp://9.rarbg.me:2720/announce
- udp://opentor.org:2710/announce