Is it possible to extend a default method implementation of a trait in a struct?
In traditional object-oriented languages (e.g. Java), it is possible to "extend" the functionality of a method in an inherited class by calling the original method from the super class in the overridden version, for example: class A { public void method() { System.out.println("I am doing some serious stuff!"); } } class B extends A { @Override public void method() { super.method(); // here we call the original version System.out.println("And I'm doing something more!"); } } As you can see, in Java, I am able to call the original version from the super class using the super keyword. I was able