Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Learning Rust

You're reading from   Learning Rust A comprehensive guide to writing Rust applications

Arrow left icon
Product type Paperback
Published in Nov 2017
Publisher Packt
ISBN-13 9781785884306
Length 308 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Vesa Kaihlavirta Vesa Kaihlavirta
Author Profile Icon Vesa Kaihlavirta
Vesa Kaihlavirta
Arrow right icon
View More author details
Toc

Table of Contents (15) Chapters Close

Preface 1. Introducing and Installing Rust FREE CHAPTER 2. Variables 3. Input and Output 4. Conditions, Recursion, and Loops 5. Remember, Remember 6. Creating Your Own Rust Applications 7. Matching and Structures 8. The Rust Application Lifetime 9. Introducing Generics, Impl, and Traits 10. Creating Your Own Crate 11. Concurrency in Rust 12. Now It's Your Turn! 13. The Standard Library 14. Foreign Function Interfaces

Can we reduce the amount of code further?


Yes. It is possible to completely omit the requirement to create an implementation of a trait if that trait contains a default method:

trait MyTrait 
{
  fn test_code(&self) -> bool;
  fn self_test_code(&self) -> bool { self.test_code() } }

test_code is just the stub which requires an implementation. The self_test_code function doesn't need an implementation as it has a default method already.

Can the default method be overridden?

It can.

Note

The code for this section is in 09/override_default_method.

Let's start the code off by defining a trait. This has a default method for is_not_done. We will still need to implement is_done though, which we do for the UseFirstTime struct:

struct UseFirstTime; 
impl MyTrait for UseFirstTime 
{
  fn is_done(&self) -> bool 
  {
    println!("UseFirstTime.is_done"); 
    true
  } 
}

We next want to override the default method for is_not_done. Again, we create an empty struct and write both the implementations...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime